/* ═══════════════════════════════════════════════
   Praktijk de Libelle — Stylesheet
   ═══════════════════════════════════════════════ */

/* ── PALETTEN ──
   ① Warme Aarde (standaard)
   ② Zen Tuin
   ③ Avondlicht
   Wissel via data-palette="1|2|3" op <html>
   ──────────────────────────────────────── */

:root {
  --cream:    #F6F1E9;
  --warm:     #EEE6D5;
  --sage:     #4A6741;
  --sage-dk:  #344B30;
  --terra:    #B86B4A;
  --terra-dk: #9e5035;
  --gold:     #D2B465;
  --gold-lt:  #F0E196;
  --gold-dk:  #A08828;
  --ink:      #252018;
  --mid:      #6B6355;
  --light:    #8A9E84;
  --div:      rgba(74,103,65,.13);
  --nav-h:    4.5rem;
}

[data-palette="2"] {
  --cream:    #F7F3EC;
  --warm:     #EDE5D4;
  --sage:     #5C7A3E;
  --sage-dk:  #3A5225;
  --terra:    #A0622A;
  --terra-dk: #7A4418;
  --gold:     #C89840;
  --gold-lt:  #E8C870;
  --gold-dk:  #8A6218;
  --ink:      #221A0E;
  --mid:      #6A5840;
  --light:    #8A9A70;
  --div:      rgba(92,122,62,.13);
}

[data-palette="3"] {
  --cream:    #F8F4F0;
  --warm:     #EEE4E0;
  --sage:     #7A4A6A;
  --sage-dk:  #4E2A48;
  --terra:    #B06030;
  --terra-dk: #884018;
  --gold:     #D4A840;
  --gold-lt:  #ECC870;
  --gold-dk:  #9A6A10;
  --ink:      #251820;
  --mid:      #6A5060;
  --light:    #9A7888;
  --div:      rgba(122,74,106,.13);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.78;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.skiplink {
  position: absolute; left: -9999px; top: auto;
  background: var(--sage-dk); color: #fff;
  padding: .75rem 1.5rem; font-size: .9rem; text-decoration: none; z-index: 9000;
}
.skiplink:focus { left: 1rem; width: auto; height: auto; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(246,241,233,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--div);
  transition: box-shadow .3s;
}
[data-palette="2"] header { background: rgba(247,243,236,.95); }
[data-palette="3"] header { background: rgba(248,244,240,.95); }
header.scrolled { box-shadow: 0 4px 28px rgba(37,32,24,.08); }

nav {
  max-width: 1280px; margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; gap: 1rem;
}

.nav-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; gap: .85rem; }
.nav-logo img { height: 3rem; width: auto; display: block; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--sage-dk); display: block; letter-spacing: .03em; }
.nav-logo-sub { font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; color: var(--mid); display: block; }
.nav-menu { display: flex; align-items: center; gap: .1rem; list-style: none; flex: 1; justify-content: center; white-space: nowrap; }
.nav-menu li a { text-decoration: none; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--mid); font-weight: 400; padding: .45rem .85rem; border-radius: 2rem; transition: color .2s, background .2s; display: block; }
.nav-menu li a:hover, .nav-menu li a.active { color: var(--sage); background: color-mix(in srgb, var(--sage) 8%, transparent); }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; background: var(--terra); color: #fff; text-decoration: none; font-size: .8rem; font-weight: 500; padding: .55rem 1.2rem; border-radius: 2rem; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
.nav-phone:hover { background: var(--terra-dk); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; flex-shrink: 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--sage-dk); border-radius: 2px; transition: transform .3s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; flex-direction: column; background: rgba(246,241,233,.98); backdrop-filter: blur(16px); border-top: 1px solid var(--div); padding: 1.25rem 2rem 1.75rem; }
.nav-drawer.open { display: flex; }
.nav-drawer a { text-decoration: none; font-size: .9rem; letter-spacing: .07em; text-transform: uppercase; color: var(--mid); padding: .85rem .25rem; border-bottom: 1px solid var(--div); transition: color .2s; }
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover { color: var(--sage); }
.drawer-phone { display: flex !important; align-items: center; justify-content: center; gap: .6rem; margin-top: 1.25rem; padding: .85rem; background: var(--terra) !important; color: #fff !important; border-radius: 2rem; font-weight: 500; border-bottom: none !important; }

/* ── SHARED ── */
.inner { max-width: 1200px; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
section { padding: 7rem 2.5rem; }
.label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .75rem; }
.label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--terra); }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.1rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.12; color: var(--sage-dk); }
h2 em { font-style: italic; }

/* ── WAVES ── */
.wave { overflow: hidden; line-height: 0; display: block; position: relative; z-index: 4; }
.wave svg { display: block; width: 100%; }
.wave-cream   { fill: var(--cream); }
.wave-warm    { fill: var(--warm); }
.wave-sage-dk { fill: var(--sage-dk); }

/* ── HERO ── */
#home { position: relative; padding: var(--nav-h) 0 0; }
.hero-carousel { position: absolute; inset: 0; display: grid; overflow: hidden; }
.hero-carousel img, .hero-carousel picture { grid-area: 1/1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2s ease-in-out; }
.hero-carousel img.active, .hero-carousel picture:has(img.active) { opacity: 1; }
.hero-carousel picture { display: contents; }
.hero-carousel::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, transparent 0%, rgba(246,241,233,.3) 30%, rgba(246,241,233,.7) 55%, var(--cream) 85%, var(--cream) 100%); z-index: 2; pointer-events: none; }
.hero-overlay { grid-area: 1/1; background: linear-gradient(90deg, rgba(246,241,233,.92) 0%, rgba(246,241,233,.75) 50%, rgba(246,241,233,.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 3; padding: 8vw 4rem 6rem 5rem; max-width: 50%; }
.hero-kicker { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra); margin-bottom: 1.75rem; display: flex; align-items: center; gap: .8rem; text-shadow: 0 0 8px rgba(246,241,233,.8), 0 0 16px rgba(246,241,233,.5); }
.hero-kicker::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--terra); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; line-height: 1.07; color: var(--sage-dk); margin-bottom: 1.75rem; text-shadow: 0 0 12px rgba(246,241,233,.7), 0 0 24px rgba(246,241,233,.4); }
.hero-title em { font-style: italic; color: var(--terra); }
.hero-intro { font-size: 1rem; color: var(--mid); max-width: 40ch; line-height: 1.8; margin-bottom: 2.75rem; text-shadow: 0 0 8px rgba(246,241,233,.7), 0 0 16px rgba(246,241,233,.4); }
.btn-call { display: inline-flex; align-items: center; gap: .85rem; background: var(--terra); color: #fff; text-decoration: none; font-size: 1.15rem; font-weight: 500; padding: 1rem 2.1rem; border-radius: 3rem; box-shadow: 0 6px 28px rgba(184,107,74,.3); transition: background .2s, transform .15s; width: fit-content; }
.btn-call:hover { background: var(--terra-dk); transform: translateY(-2px); }
.hero-note { margin-top: 1rem; font-size: .75rem; color: var(--mid); letter-spacing: .06em; }
.hero-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .9rem; border-radius: 2rem; background: rgba(74,103,65,.1); border: 1px solid rgba(74,103,65,.2); font-size: .74rem; color: var(--sage-dk); letter-spacing: .04em; text-decoration: none; transition: background .2s ease; }
.hero-pill:hover { background: rgba(74,103,65,.2); }

/* ── TCM ── */
#tcm { background: var(--warm); }
.tcm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.tcm-body { font-size: .97rem; color: var(--mid); }
.tcm-body p { margin-bottom: 1.1rem; }
.tcm-body strong { color: var(--ink); font-weight: 500; }
.tcm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tcm-card { background: var(--cream); border-radius: 1.2rem; padding: 1.6rem; border: 1px solid var(--div); }
.tcm-card.wide { grid-column: span 2; background: var(--sage-dk); position: relative; overflow: hidden; }
.tcm-card.wide::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent); }
.tcm-card.wide h3 { color: var(--cream); }
.tcm-card.wide p { color: rgba(246,241,233,.65); }
.tcm-icon { font-size: 1.5rem; margin-bottom: .75rem; display: block; }
.tcm-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--sage-dk); margin-bottom: .35rem; }
.tcm-card p { font-size: .84rem; color: var(--mid); line-height: 1.6; }

/* ── BEHANDELINGEN ── */
#behandelingen { background: var(--cream); }
.beh-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: end; }
.beh-intro p { color: var(--mid); font-size: .97rem; }
.beh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.beh-card { background: var(--warm); border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--div); transition: transform .3s ease, box-shadow .3s ease; }
.beh-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.beh-card-link { display: block; text-decoration: none; color: inherit; }
.beh-gold-bar { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt) 60%, transparent); opacity: .8; }
.beh-top { padding: 2.5rem 2rem; }
.beh-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--div); line-height: 1; margin-bottom: .5rem; }
.beh-icon { width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.beh-icon-1 { background: color-mix(in srgb, var(--terra) 12%, transparent); color: var(--terra); }
.beh-icon-2 { background: color-mix(in srgb, var(--sage) 12%, transparent); color: var(--sage); }
.beh-icon-3 { background: color-mix(in srgb, var(--gold) 15%, transparent); color: var(--gold-dk); }
.beh-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--sage-dk); margin-bottom: .75rem; }
.beh-card p { font-size: .875rem; color: var(--mid); line-height: 1.7; }
.beh-tag { display: inline-block; margin-top: .9rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); background: color-mix(in srgb, var(--terra) 10%, transparent); padding: .3rem .7rem; border-radius: 2rem; }

/* ── ERVARINGEN ── */
#ervaringen { background: var(--sage-dk); padding: 7rem 2.5rem; position: relative; }
#ervaringen::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent); }
#ervaringen::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), var(--gold), transparent); }
#ervaringen .label { color: var(--gold-lt); }
#ervaringen .label::before { background: var(--gold); }
#ervaringen h2 { color: var(--cream); }
.erv-sub { color: rgba(246,241,233,.55); font-size: .93rem; max-width: 52ch; margin: .75rem 0 3.5rem; }
.review-fade { position: relative; margin-bottom: 6rem; max-width: 48rem; margin-left: auto; margin-right: auto; display: grid; }
.review-single { grid-area: 1/1; opacity: 0; transition: opacity .8s ease; background: rgba(246,241,233,.07); border: 1px solid rgba(246,241,233,.1); border-radius: 1.2rem; padding: 2.5rem 2.5rem 3rem; display: flex; flex-direction: column; gap: 1.2rem; align-items: center; text-align: center; pointer-events: none; }
.review-single.active { opacity: 1; pointer-events: auto; }
.review-stars { color: var(--gold); letter-spacing: .15em; font-size: 1.1rem; }
.review-text { font-size: 1rem; color: rgba(246,241,233,.78); line-height: 1.8; font-style: italic; }
.review-name { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--light); }

/* ── BARBARA ── */
#barbara { background: var(--cream); }
.barbara-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: center; margin-top: 3.5rem; }
.barbara-grid > img { transform: rotate(-2deg); box-shadow: 8px 12px 32px rgba(0,0,0,.25); transition: transform .4s ease, box-shadow .4s ease; }
.barbara-grid > img:hover { transform: rotate(0deg) scale(1.02); box-shadow: 12px 16px 40px rgba(0,0,0,.3); }
.barbara-visual { aspect-ratio: 3/4; border-radius: 2rem; background: var(--warm); border: 2px dashed var(--div); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.barbara-visual-hint { font-size: .82rem; color: var(--sage); line-height: 1.5; }
.barbara-visual-hint strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--sage-dk); margin-bottom: .3rem; }
.barbara-text p { font-size: .96rem; color: var(--mid); margin-bottom: 1.15rem; }
.barbara-text strong { color: var(--ink); font-weight: 500; }
.barbara-quote { margin: 2rem 0; border-left: 3px solid var(--gold); padding: .75rem 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; font-style: italic; color: var(--sage-dk); line-height: 1.4; }
.accred { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--div); }
.accred h4 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.25rem; }
.accred-logos { display: flex; gap: 1rem; flex-wrap: wrap; }
.accred-badge { display: inline-flex; align-items: center; padding: .55rem 1.1rem; border-radius: .6rem; border: 1.5px solid var(--div); font-size: .78rem; font-weight: 500; color: var(--sage-dk); text-decoration: none; transition: border-color .2s, background .2s; }
.accred-badge:hover { border-color: var(--sage); background: color-mix(in srgb, var(--sage) 8%, transparent); }

/* ── TARIEVEN ── */
#tarieven { background: var(--warm); }
.tarieven-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.tarief { background: var(--cream); border-radius: 1.2rem; padding: 2rem; border: 1px solid var(--div); position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.tarief:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.tarief::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt) 60%, transparent); opacity: .6; }
.tarief.featured { background: var(--sage-dk); border-color: transparent; }
.tarief.featured::before { opacity: 1; }
.tarief.featured h3, .tarief.featured .tarief-price { color: var(--cream); }
.tarief.featured .tarief-sub, .tarief.featured .tarief-desc, .tarief.featured .tarief-dur { color: rgba(246,241,233,.6); }
.tarief-badge { position: absolute; top: -1px; right: 1.5rem; background: var(--terra); color: #fff; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 0 0 .6rem .6rem; }
.tarief-sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--mid); margin-bottom: .4rem; }
.tarief h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--sage-dk); margin-bottom: .9rem; }
.tarief-price { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--gold-dk); line-height: 1; }
.tarief-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .35rem; }
.tarief-dur { font-size: .78rem; color: var(--mid); margin: .3rem 0 .9rem; }
.tarief-desc { font-size: .83rem; color: var(--mid); line-height: 1.65; }
.vergoeding { margin-top: 2.5rem; padding: 1.6rem 2rem; background: var(--cream); border-radius: 1rem; border: 1px solid var(--div); }
.vergoeding-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--sage-dk); margin-bottom: .75rem; }
.vergoeding p { font-size: .88rem; color: var(--mid); line-height: 1.7; margin-bottom: .6rem; }
.vergoeding-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.verg-link { font-size: .8rem; color: var(--sage); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--div); padding-bottom: .1rem; transition: color .2s; }
.verg-link:hover { color: var(--sage-dk); }

/* ── LOCATIE ── */
#locatie { background: var(--cream); }
.locatie-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3.5rem; align-items: start; }
.locatie-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--sage-dk); line-height: 1.2; margin-bottom: 2.25rem; }
.loc-block { margin-bottom: 1.75rem; }
.loc-label { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--terra); margin-bottom: .4rem; display: block; }
.loc-block p { font-size: .93rem; color: var(--ink); line-height: 1.65; }
.loc-block a { color: var(--sage); text-decoration: none; }
.loc-block a:hover { text-decoration: underline; }
.btn-route { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem; padding: .7rem 1.5rem; border: 1.5px solid var(--sage); border-radius: 2rem; color: var(--sage); text-decoration: none; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
.btn-route:hover { background: var(--sage); color: #fff; }
.map-wrap { border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--div); aspect-ratio: 4/3; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CONTACT ── */
#contact { background: var(--terra); padding: 7rem 2.5rem; text-align: center; position: relative; }
#contact::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-lt), var(--gold), var(--gold-lt), transparent); }
#contact .label { color: rgba(246,241,233,.6); justify-content: center; }
#contact .label::before { background: rgba(246,241,233,.4); }
#contact h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 1.25rem; }
.contact-txt { color: rgba(246,241,233,.8); max-width: 50ch; margin: 0 auto 2.75rem; font-size: 1rem; line-height: 1.75; }
.cta-big { display: inline-flex; align-items: center; gap: 1rem; background: #fff; color: var(--terra); font-size: 1.4rem; font-weight: 500; padding: 1.1rem 2.75rem; border-radius: 4rem; text-decoration: none; box-shadow: 0 8px 44px rgba(0,0,0,.15); transition: transform .2s, box-shadow .2s; }
.cta-big:hover { transform: translateY(-3px); box-shadow: 0 16px 60px rgba(0,0,0,.2); }
.cta-email { display: block; margin-top: 1.4rem; color: rgba(246,241,233,.6); font-size: .85rem; text-decoration: none; transition: color .2s; }
.cta-email:hover { color: #fff; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(246,241,233,.4); padding: 2.75rem 2.5rem; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-dk), var(--gold), var(--gold-dk), transparent); opacity: .5; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; font-size: .78rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: rgba(246,241,233,.65); }
.footer-logo span { display: block; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .15rem; opacity: .5; font-family: 'DM Sans', sans-serif; }
.footer-center { text-align: center; line-height: 1.9; }
.footer-right { text-align: right; }
.footer-right a { color: rgba(246,241,233,.38); text-decoration: none; }
.footer-right a:hover { color: rgba(246,241,233,.8); }

/* ── PALETSWITCHER ── */
.pal-switcher { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 8000; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; font-family: 'DM Sans', sans-serif; }
.pal-toggle { display: flex; align-items: center; gap: .5rem; background: var(--ink); color: rgba(246,241,233,.85); border: none; border-radius: 2rem; padding: .55rem 1rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.pal-toggle:hover { opacity: .85; }
.pal-panel { background: #fff; border-radius: 1rem; padding: .9rem; box-shadow: 0 8px 40px rgba(0,0,0,.18); display: flex; flex-direction: column; gap: .4rem; min-width: 190px; }
.pal-panel.hidden { display: none; }
.pal-panel-label { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: #999; margin-bottom: .2rem; padding: 0 .4rem; }
.pal-btn { display: flex; align-items: center; gap: .7rem; padding: .55rem .7rem; border: 1.5px solid #eee; border-radius: .65rem; background: none; cursor: pointer; text-align: left; transition: border-color .15s, background .15s; width: 100%; }
.pal-btn:hover { background: #f7f7f7; }
.pal-btn.active { border-color: #444; background: #f0f0f0; }
.pal-swatches { display: flex; gap: 3px; flex-shrink: 0; }
.pal-swatches span { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); display: block; }
.pal-info { display: flex; flex-direction: column; line-height: 1.3; }
.pal-info strong { font-size: .78rem; color: #222; font-weight: 500; }
.pal-info small { font-size: .66rem; color: #999; }

/* ── ACCESSIBILITY ── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 3px; }
* { scrollbar-width: thin; scrollbar-color: var(--sage) var(--warm); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ── ARTICLE ── */
.article-page { padding-top: 10rem; padding-bottom: 6rem; padding-left: 1.25rem; padding-right: 1.25rem; }
.article-back { display: inline-block; font-size: .82rem; color: var(--sage); text-decoration: none; margin-bottom: 2rem; letter-spacing: .03em; }
.article-back:hover { color: var(--terra); }
.article-meta { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: .75rem; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--sage-dk); margin-bottom: 2.5rem; line-height: 1.2; }
.article-cover { width: 100%; max-width: 800px; border-radius: 1.5rem; margin-bottom: 3rem; border: 1px solid var(--div); }
.article-body { max-width: 68ch; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--sage-dk); margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--sage-dk); margin: 2rem 0 .75rem; }
.article-body p { font-size: .95rem; color: var(--mid); line-height: 1.85; margin-bottom: 1.25rem; }
.article-body em { font-style: italic; }
.article-body strong { font-weight: 500; color: var(--sage-dk); }
.article-body a { color: var(--sage); text-decoration: underline; text-underline-offset: .15em; }
.article-body a:hover { color: var(--terra); }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin: 1rem 0; }
.article-body li { font-size: .95rem; color: var(--mid); line-height: 1.85; margin-bottom: .4rem; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(210,180,101,.06); border-radius: 0 .5rem .5rem 0; }
.article-body blockquote p { color: var(--sage-dk); font-style: italic; }

/* ── PRIVACY ── */
.privacy-section { padding-top: 10rem; padding-left: 1.25rem; padding-right: 1.25rem; padding-bottom: 6rem; }
.privacy-section h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--sage-dk); margin-bottom: 3rem; }
.privacy-content { max-width: 72ch; }
.privacy-block { margin-bottom: 2.5rem; }
.privacy-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--sage-dk); margin-bottom: .6rem; }
.privacy-block p { font-size: .93rem; color: var(--mid); line-height: 1.75; margin-bottom: .6rem; }
.privacy-block ul { padding-left: 1.5rem; margin: .5rem 0; }
.privacy-block li { font-size: .93rem; color: var(--mid); line-height: 1.75; }
.privacy-block a { color: var(--sage); text-decoration: underline; text-underline-offset: .15em; }
.privacy-block a:hover { color: var(--terra); }

/* ── RESPONSIVE ── */
@media (max-width: 1400px) {
  .nav-phone { display: none; }
}
@media (max-width: 1140px) {
  .nav-logo-sub { display: none; }
  .nav-menu li a { font-size: .7rem; padding: .4rem .55rem; letter-spacing: .05em; }
  nav { padding: 0 1.5rem; gap: .5rem; }
  .barbara-grid { gap: 3rem; }
  .locatie-grid { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .nav-menu li a { font-size: .65rem; padding: .35rem .4rem; letter-spacing: .03em; }
  .nav-logo-name { font-size: 1rem; }
  .beh-grid { grid-template-columns: 1fr 1fr; }
  .tarieven-grid { grid-template-columns: 1fr 1fr; }
  .barbara-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .locatie-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { padding: 6vw 2.5rem 5rem 3rem; max-width: 55%; }
}
@media (max-width: 767px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .hero-overlay { display: none; }
  .hero-carousel::after { display: none; }
  #home::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(246,241,233,.35) 0%, rgba(246,241,233,.65) 30%, rgba(246,241,233,.85) 50%, var(--cream) 65%); pointer-events: none; }
  .hero-content { max-width: 100%; padding: 15vw 2.5rem 4rem; }
  .hero-intro { margin-bottom: 2rem; }
  .tcm-grid, .beh-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .beh-grid { grid-template-columns: 1fr 1fr; }
  .tarieven-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
}
@media (max-width: 640px) {
  section { padding: 5rem 1.5rem; }
  #contact, #ervaringen { padding: 5rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
  .beh-grid { grid-template-columns: 1fr; }
  .tcm-cards { grid-template-columns: 1fr; }
  .tcm-card.wide { grid-column: span 1; }
  nav { padding: 0 1.5rem; }
  .hero-content { padding: 18vw 1.5rem 4rem; }
  .hero-kicker { margin-bottom: 1rem; }
  .hero-title { font-size: 2.6rem; margin-bottom: 1.25rem; }
  .hero-intro { font-size: .93rem; margin-bottom: 1.75rem; }
  .btn-call { font-size: 1rem; padding: .85rem 1.75rem; }
  .hero-note { margin-top: .75rem; }
  .hero-pills { margin-top: 1.25rem; }
  .cta-big { font-size: 1.1rem; padding: .9rem 2rem; }
}

/* ── Accreditatie logo's ── */
.accred-logos { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.accred-logo-link {
  display: inline-block;
  transition: transform .2s, opacity .2s;
  flex-shrink: 0;
}
.accred-logo-link:hover { transform: translateY(-2px); opacity: .85; }
.accred-logo { display: block; }
.accred-logo-rbcz  { height: 3rem; width: auto; }
.accred-logo-round { height: 4.5rem; width: auto; }
