/* ==========================================================================
   Beauty by Lynde — stylesheet
   Kleuren: beige / natuurlijke lichte tinten + zachtroze. Sfeer: warm & luxe.
   ========================================================================== */

/* ---------- Fonts (self-hosted, geen externe requests) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  --cream:    #FCFAF7;
  --sand:     #F5EEE6;
  --sand-2:   #EFE4D8;
  --blush:    #F4E3DE;
  --blush-2:  #E7CDC6;
  --taupe:    #C6B09C;
  --accent:   #B4977C;
  --brand:    #5E4B3E;
  --brand-2:  #443629;
  --ink:      #3B302A;
  --ink-2:    #55483F;
  --muted:    #6F6056;
  --line:     #E7DCD0;
  --line-2:   #DCCDBC;
  --white:    #FFFFFF;

  --ff-display: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --ff-sans:    'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(59,48,42,.04), 0 6px 18px -8px rgba(59,48,42,.10);
  --shadow:    0 2px 4px rgba(59,48,42,.04), 0 24px 48px -24px rgba(59,48,42,.22);
  --shadow-lg: 0 40px 80px -32px rgba(59,48,42,.30);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 44px);
  --header-h: 74px;

  --ease: cubic-bezier(.22,.68,.32,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(16px, .4vw + 15px, 17px);
  line-height: 1.75;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* Moet boven alle display-regels staan: anders blijft een element met een eigen
   display-waarde (zoals .modal__loading) zichtbaar ondanks het hidden-attribuut. */
[hidden] { display: none !important; }

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }

/* <picture> is enkel een wrapper: laat de <img> zelf de layout bepalen,
   zodat height:100% en object-fit werken t.o.v. de echte container. */
picture { display: contents; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); letter-spacing: 0; }

p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blush-2); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--brand); color: var(--cream);
  padding: 12px 20px; border-radius: 999px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

.section { padding-block: clamp(60px, 8.5vw, 118px); }
.section--tight { padding-block: clamp(44px, 6vw, 78px); }
.section--sand { background: var(--sand); }
.section--blush { background: linear-gradient(180deg, var(--blush) 0%, #F8EDE9 100%); }
.section--dark { background: var(--ink); color: var(--sand); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.stack > * + * { margin-top: 1.1em; }
.center { text-align: center; }
.center p { margin-inline: auto; }

/* ---------- Kop-onderdelen ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1em;
}
.eyebrow::before {
  content: ''; width: 34px; height: 1px; background: currentColor; opacity: .6;
}
.center .eyebrow::after {
  content: ''; width: 34px; height: 1px; background: currentColor; opacity: .6;
}
.section--dark .eyebrow { color: var(--taupe); }

.lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--muted); line-height: 1.7; }
.section--dark .lead { color: #D9CDC0; }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg); border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  line-height: 1; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:hover { --btn-bg: var(--brand-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); border-color: var(--ink); }

.btn--light { --btn-bg: var(--cream); --btn-fg: var(--ink); }
.btn--light:hover { --btn-bg: var(--white); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--cream); border-color: rgba(245,238,230,.35); }
.btn--outline-light:hover { --btn-bg: rgba(245,238,230,.12); border-color: var(--cream); }

.btn--sm { padding: 11px 22px; font-size: .72rem; }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

/* Tekstlink met pijl */
.arrow-link {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 6px;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.arrow-link svg { width: 15px; height: 15px; flex: none; transition: transform .25s var(--ease); }
.arrow-link:hover { color: var(--ink); border-color: var(--accent); gap: .9em; }
.arrow-link:hover svg { transform: translateX(2px); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(252,250,247,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 0;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  box-shadow: 0 1px 0 var(--line), 0 6px 24px -18px rgba(59, 48, 42, .5);
}

.header__inner {
  display: flex; align-items: center; gap: 24px;
  min-height: var(--header-h);
}

.brand { flex: none; display: grid; align-items: center; justify-items: start; padding-block: 8px; }
.brand img { grid-area: 1 / 1; height: 34px; width: auto; transition: opacity .35s var(--ease); }
.brand__light { opacity: 0; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }

.nav__link {
  display: inline-flex; align-items: center; gap: .4em;
  padding: 10px 14px;
  font-size: .74rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(198,176,156,.16); }
.nav__link[aria-current="page"] { color: var(--brand); }

.nav__item { position: relative; }
.nav__item--current > .nav__link { color: var(--brand); }

/* Dropdown */
.nav__caret { width: 9px; height: 9px; opacity: .55; transition: transform .25s var(--ease); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

.nav__sub {
  position: absolute; top: calc(100% + 10px); left: 50%;
  translate: -50% 0;
  min-width: 258px;
  list-style: none; margin: 0; padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub,
.nav__item.is-open .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__sub a {
  display: block; padding: 11px 16px; border-radius: var(--r-sm);
  font-size: .92rem; color: var(--ink-2); line-height: 1.4;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__sub a small { display: block; font-size: .74rem; color: var(--muted); letter-spacing: .01em; }
.nav__sub a:hover { background: var(--sand); color: var(--ink); }

.header__cta { flex: none; }

/* Hamburger */
.burger {
  display: none;
  width: 46px; height: 46px; margin-left: auto;
  background: var(--sand); border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; padding: 0;
  place-items: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.burger:hover, .burger[aria-expanded="true"] { background: var(--sand-2); border-color: var(--line-2); }

/* Vaste doos van 20x12: de twee lijnen draaien om het midden daarvan */
.burger__box { position: relative; display: block; width: 20px; height: 12px; }
.burger__box span {
  position: absolute; left: 0;
  display: block; width: 100%; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .34s var(--ease), width .34s var(--ease);
}
.burger__box span:nth-child(1) { top: 1px; }
.burger__box span:nth-child(2) { bottom: 1px; width: 68%; }
.burger:hover .burger__box span:nth-child(2) { width: 100%; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { width: 100%; transform: translateY(-4.25px) rotate(-45deg); }

/* Mobiel menu — staat buiten <header>, dus fixed t.o.v. het scherm */
.drawer {
  position: fixed; inset: 0; z-index: 80;
  background: var(--cream);
  padding: calc(var(--header-h) + 12px) 0 max(28px, env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  transition: opacity .26s var(--ease), visibility .26s;
}
.drawer.is-open { opacity: 1; visibility: visible; }

/* Inhoud schuift zachtjes binnen */
.drawer__inner {
  min-height: 100%;
  display: flex; flex-direction: column;
  padding-inline: var(--gutter);
  transform: translateY(-10px);
  transition: transform .34s var(--ease);
}
.drawer.is-open .drawer__inner { transform: none; }

.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer > .drawer__inner > ul > li { border-bottom: 1px solid var(--line); }
/* Alleen de menuregels; de knop in .drawer__foot houdt zijn eigen .btn-stijl */
.drawer__inner > ul a, .drawer .drawer__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 15px 2px;
  font-family: var(--ff-display); font-size: 1.45rem; font-weight: 300; line-height: 1.25;
  color: var(--ink); background: none; border: 0; text-align: left; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.drawer__toggle svg { width: 13px; height: 13px; opacity: .5; transition: transform .25s var(--ease); }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__sub { overflow: hidden; max-height: 0; transition: max-height .38s var(--ease); }
.drawer__sub.is-open { max-height: 560px; }   /* ruim boven de werkelijke hoogte */
.drawer__sub li:last-child a { padding-bottom: 16px; }
.drawer__inner .drawer__sub a {
  font-family: var(--ff-sans); font-size: 1rem; font-weight: 300; color: var(--muted);
  padding: 12px 2px 12px 20px; border-left: 1px solid var(--line-2);
  margin-left: 3px;
}
.drawer__inner .drawer__sub a:hover { color: var(--ink); }
.drawer__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 12px; }

/* Zwevende mobiele afspraak-knop */
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  display: none; align-items: center; gap: .55em;
  padding: 15px 22px;
  background: var(--brand); color: var(--cream);
  border: 0; border-radius: 999px; cursor: pointer;
  font-size: .76rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(59,48,42,.5);
  animation: fab-in .5s .6s var(--ease) both;
}
.fab svg { width: 16px; height: 16px; }
@keyframes fab-in { from { opacity: 0; transform: translateY(18px) scale(.94); } }

/* ==========================================================================
   Doorzichtige header (alleen op pagina's met een donkere hero)
   .is-top wordt door JavaScript gezet zolang de hero nog achter de balk zit.
   Staat JS uit, dan blijft de balk gewoon licht - altijd leesbaar dus.
   ========================================================================== */
.header--overlay ~ main .hero { margin-top: calc(var(--header-h) * -1); }
.header--overlay ~ main .hero__inner { padding-top: calc(clamp(70px, 10vw, 110px) + var(--header-h)); }

.header--overlay.is-top {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none;
}
/* Zachte donkere sluier onder de balk: houdt logo en menu leesbaar, ook boven
   een licht stukje foto. Verdwijnt zodra de balk dichtloopt. */
.header--overlay.is-top::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 190%; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(28, 20, 16, .58) 0%, rgba(28, 20, 16, .28) 55%, rgba(28, 20, 16, 0) 100%);
}

/* Logo wisselt van donker naar wit */
.header--overlay.is-top .brand__dark  { opacity: 0; }
.header--overlay.is-top .brand__light { opacity: 1; }

/* Menulinks */
.header--overlay.is-top .nav__link { color: rgba(245, 238, 230, .86); }
.header--overlay.is-top .nav__link:hover { color: var(--white); background: rgba(255, 255, 255, .14); }
.header--overlay.is-top .nav__item--current > .nav__link { color: var(--white); }
.header--overlay.is-top .nav__caret { opacity: .8; }

/* Afspraakknop: omgekeerd, zodat hij oplicht tegen de donkere hero */
.header--overlay.is-top .header__cta .btn {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: rgba(245, 238, 230, .55);
}
.header--overlay.is-top .header__cta .btn:hover {
  --btn-bg: var(--cream); --btn-fg: var(--ink); border-color: var(--cream);
}

/* Hamburger */
.header--overlay.is-top .burger { background: rgba(255, 255, 255, .12); border-color: rgba(245, 238, 230, .38); }
.header--overlay.is-top .burger:hover { background: rgba(255, 255, 255, .2); }
.header--overlay.is-top .burger__box span { background: var(--cream); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--sand); overflow: hidden; }

.hero__media { position: absolute; inset: 0; background: var(--ink); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Donkere overlay: houdt de warme sfeer, maar maakt de tekst goed leesbaar */
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(38,29,24,.80) 0%, rgba(38,29,24,.66) 42%, rgba(38,29,24,.40) 72%, rgba(38,29,24,.30) 100%),
    linear-gradient(180deg, rgba(38,29,24,.30) 0%, rgba(38,29,24,0) 30%, rgba(38,29,24,.34) 100%);
}

.hero__inner {
  position: relative;
  display: flex; align-items: center;
  min-height: clamp(560px, 82vh, 780px);
  padding-block: clamp(70px, 10vw, 110px);
}
.hero__content { max-width: 640px; }
.hero h1 { margin-bottom: .35em; color: var(--cream); text-shadow: 0 1px 30px rgba(30,22,18,.35); }
.hero h1 em { font-style: italic; color: var(--blush-2); }
.hero .eyebrow { color: var(--blush-2); }
.hero .lead { max-width: 48ch; color: #EADFD5; }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 26px;
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,238,230,.75);
}
.hero__scroll::after {
  content: ''; width: 44px; height: 1px; background: rgba(245,238,230,.5); position: relative;
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line { 0%,100% { transform: scaleX(.4); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

/* Pagina-hero (subpagina's) */
.page-hero {
  background: linear-gradient(170deg, var(--sand) 0%, var(--cream) 100%);
  padding-block: clamp(52px, 7vw, 96px) clamp(44px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { max-width: 760px; }
.page-hero h1 { margin-bottom: .3em; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5em;
  list-style: none; margin: 0 0 1.6em; padding: 0;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.crumbs li + li::before { content: '/'; margin-right: .5em; opacity: .5; }
.crumbs a:hover { color: var(--brand); }

/* ==========================================================================
   Kaarten & grids
   ========================================================================== */
.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

/* Dienstenraster: laatste rij wordt netjes gecentreerd i.p.v. een gat rechts */
.grid--services {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 2.4vw, 30px);
}
.grid--services > * { flex: 1 1 264px; max-width: 348px; }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }

.card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }

/* Kaart zonder foto (nog): stijlvolle vervanger i.p.v. een lege plek */
.card__media--placeholder {
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--blush) 0%, var(--sand-2) 55%, var(--taupe) 140%);
  color: var(--brand);
}
.card__media--placeholder svg { width: 46px; height: 46px; opacity: .8; }
.card:hover .card__media img { transform: scale(1.05); }

.card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(22px, 2.4vw, 30px); }
.card__body h3 { margin-bottom: .45em; }
.card__body p { color: var(--muted); font-size: .97rem; margin-bottom: 1.5em; }
.card__body .arrow-link { margin-top: auto; align-self: flex-start; }

/* Kaart die volledig klikbaar is */
.card__link::after { content: ''; position: absolute; inset: 0; }

/* Genummerde/iconische feature-kaart */
.feature {
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  height: 100%;
}
.section--sand .feature { background: var(--cream); }
.feature__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 20px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--brand);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 1.3rem; margin-bottom: .5em; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ==========================================================================
   Split (beeld + tekst)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split--top { align-items: start; }
.split__media { position: relative; }
.split__media img,
.split__media video {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
  background: var(--sand-2);
}
.split__media--wide img { aspect-ratio: 5 / 4; }
.split--reverse .split__media { order: 2; }

/* Decoratief kader achter beeld */
.split__media--framed::before {
  content: ''; position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  z-index: -1;
}

.split__body h2 { margin-bottom: .5em; }

/* Kleine feiten-lijst */
.facts { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 14px; }
.facts li { display: flex; gap: 14px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.facts svg { width: 18px; height: 18px; flex: none; margin-top: 5px; color: var(--accent); }

/* ==========================================================================
   Before / after slider
   ========================================================================== */
.ba {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand-2);
  touch-action: pan-y;
  --pos: 50%;
}
.ba__frame { position: relative; display: block; }
.ba__frame img { width: 100%; display: block; }
.ba__after { position: absolute; inset: 0; }
.ba__after img { width: 100%; height: 100%; object-fit: cover; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__before img { width: 100%; height: 100%; object-fit: cover; }

.ba__label {
  position: absolute; top: 14px;
  padding: 7px 15px;
  background: rgba(59,48,42,.72);
  color: var(--cream);
  border-radius: 999px;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba__label--before { left: 14px; }
.ba__label--after  { right: 14px; }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; margin-left: -1px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(59,48,42,.12);
  pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%;
  translate: -50% -50%;
  display: grid; grid-auto-flow: column; align-items: center; gap: 3px;
  width: 46px; height: 46px;
  background: var(--cream); color: var(--brand);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(59,48,42,.32);
  place-content: center;
  transition: scale .2s var(--ease);
}
.ba__knob svg { width: 15px; height: 15px; }
.ba:hover .ba__knob { scale: 1.06; }

.ba__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 56px; height: 100vh; border: 0; opacity: 0; cursor: ew-resize; }
.ba__range:focus-visible ~ .ba__handle .ba__knob { outline: 2px solid var(--brand); outline-offset: 3px; }

.ba-caption {
  max-width: 620px; margin: 18px auto 0; text-align: center;
  font-size: .84rem; color: var(--muted); letter-spacing: .04em;
}

/* ==========================================================================
   Stappen / traject-tijdlijn
   ========================================================================== */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.step {
  position: relative;
  display: grid; grid-template-columns: 74px 1fr; gap: clamp(18px, 3vw, 34px);
  padding-block: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1; color: var(--taupe);
}
.step__meta {
  display: block;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .7em;
}
.step h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin-bottom: .4em; }
.step p { color: var(--muted); margin: 0; }

/* ==========================================================================
   Techniek-blokken (nagels)
   ========================================================================== */
.tech {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 60px); align-items: center;
  padding-block: clamp(38px, 5vw, 64px);
}
/* Scheidingslijn alleen tussen twee techniek-blokken (niet onder de sectiekop) */
.tech + .tech { border-top: 1px solid var(--line); }
.tech:not(.tech + .tech) { padding-top: 0; }
.tech__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-lg); }
.tech:nth-child(even) .tech__media { order: 2; }
.tech h3 { margin-bottom: .5em; }
.tech p { color: var(--muted); }

/* Niveau-lijst nailart */
.levels { display: grid; gap: 16px; margin-top: 2rem; }
.level {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 20px 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
}
.section--sand .level { background: var(--cream); }
.level__tag {
  display: inline-grid; place-items: center;
  min-width: 62px; padding: 5px 12px;
  background: var(--blush); color: var(--brand);
  border-radius: 999px;
  font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  margin-top: 3px;
}
.level p { margin: 0; font-size: .97rem; color: var(--ink-2); }

/* ==========================================================================
   Prijs-notitie / info-blok
   ========================================================================== */
.note {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 26px;
  background: var(--blush);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: .96rem;
}
.note svg { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--brand); }
.note p { margin: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 2px;
  cursor: pointer; list-style: none;
  font-family: var(--ff-display); font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 400;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after {
  content: ''; flex: none; width: 11px; height: 11px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq details > div { padding: 0 2px 24px; color: var(--muted); font-size: .98rem; }
.faq details > div p { margin-bottom: .8em; }

/* ==========================================================================
   CTA-band
   ========================================================================== */
.cta-band { position: relative; background: var(--ink); color: var(--sand); overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 15%, rgba(198,176,156,.22), transparent 65%);
}
.cta-band__inner {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 52px);
  padding-block: clamp(52px, 7vw, 92px);
}
.cta-band h2 { color: var(--cream); margin-bottom: .3em; }
.cta-band p { color: #D8CBBE; margin: 0; max-width: 46ch; }
.cta-band .btn-row { margin-top: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(32px, 4.5vw, 64px); align-items: start;
}

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: .72rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.field label .req { color: var(--accent); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-size: 1rem; font-weight: 300; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #B5A697; }
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,151,124,.16);
}
.field textarea { resize: vertical; min-height: 148px; }
.field.has-error input, .field.has-error textarea { border-color: #B4564B; }
.field__error { font-size: .82rem; color: #B4564B; min-height: 0; }
.field:not(.has-error) .field__error { display: none; }

.form__note { font-size: .84rem; color: var(--muted); }
.form__status {
  padding: 14px 18px; border-radius: var(--r-sm);
  background: var(--blush); color: var(--ink-2); font-size: .93rem;
}
.form__status[hidden] { display: none; }

.contact-card {
  padding: clamp(26px, 3vw, 34px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.contact-card + .contact-card { margin-top: 20px; }
.contact-card h3 { font-size: 1.35rem; margin-bottom: .6em; }

.contact-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 18px; height: 18px; flex: none; margin-top: 5px; color: var(--accent); }
.contact-list a:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.contact-list span { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.btn--wa { --btn-bg: #25D366; --btn-fg: #08320F; }
.btn--wa:hover { --btn-bg: #1FBA59; }

/* Kaart / locatie (klik-om-te-laden i.v.m. privacy + snelheid) */
.map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--sand) 0%, var(--sand-2) 100%);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__placeholder {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center; gap: 14px;
  padding: 28px; text-align: center; cursor: pointer;
  border: 0; background: transparent; width: 100%;
}
.map__placeholder svg { width: 30px; height: 30px; color: var(--accent); }
.map__placeholder strong { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 400; }
.map__placeholder small { color: var(--muted); font-size: .84rem; max-width: 34ch; }

.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.hours li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours span { color: var(--muted); }

/* ==========================================================================
   Video
   ========================================================================== */
.video {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--sand-2); box-shadow: var(--shadow-sm);
}
.video video { width: 100%; display: block; aspect-ratio: 9 / 16; object-fit: cover; background: var(--ink); }
.video--portrait { max-width: 380px; margin-inline: auto; }
.video--square video { aspect-ratio: 3 / 4; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: #CDBFB2; padding-block: clamp(56px, 7vw, 84px) 0; }
.footer a { color: #CDBFB2; transition: color .2s var(--ease); }
.footer a:hover { color: var(--cream); }

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer__brand img { height: 46px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: .95rem; color: #B3A497; max-width: 34ch; }

.footer h4 {
  font-family: var(--ff-sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 1.4em;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer li { font-size: .94rem; }

.footer address { font-style: normal; font-size: .94rem; line-height: 1.8; }

.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(205,191,178,.28); border-radius: 50%;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: rgba(205,191,178,.14); border-color: var(--taupe); transform: translateY(-2px); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 28px;
  padding-block: 26px;
  border-top: 1px solid rgba(205,191,178,.16);
  font-size: .82rem; color: #A2948A;
}
/* Specifieker dan `.footer ul { display: grid }` hierboven, anders stapelt de rij */
.footer__bottom .footer__legal {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  list-style: none; margin: 0; padding: 0;
}

/* ==========================================================================
   Boekings-modal (Salonized)
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 34px);
  background: rgba(45,36,31,.55);
  backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.modal.is-open { opacity: 1; visibility: visible; }

.modal__panel {
  position: relative;
  display: flex; flex-direction: column;
  width: min(560px, 100%);
  height: min(860px, 100%);
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.985);
  transition: transform .3s var(--ease);
}
.modal.is-open .modal__panel { transform: none; }

.modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.modal__head h2 { font-size: 1.35rem; margin: 0; }
.modal__close {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  background: var(--sand); border: 0; border-radius: 50%; cursor: pointer;
  transition: background-color .2s var(--ease);
}
.modal__close:hover { background: var(--sand-2); }
.modal__close svg { width: 16px; height: 16px; }

.modal__body { flex: 1; position: relative; min-height: 0; background: var(--white); overflow-y: auto; }
.modal__body iframe { width: 100%; border: 0; display: block; }
.modal__mount { min-height: 100%; }
.modal__mount iframe { border: 0; display: block; min-height: 640px; }
.modal__loading {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px;
  color: var(--muted); font-size: .88rem;
}
.spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--line-2); border-top-color: var(--brand);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal__foot {
  padding: 12px 24px; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted); text-align: center; background: var(--white);
}
.modal__foot a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Volledige boekingspagina (afspraak.html) */
/* De Salonized-widget is zelf 500px breed; de kaart eromheen volgt die maat. */
.booking-embed {
  max-width: 548px; margin-inline: auto; padding: 14px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.booking-embed iframe { border: 0; display: block; min-height: 660px; }

/* ==========================================================================
   Juridische pagina's
   ========================================================================== */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6em; }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.placeholder-box {
  padding: 22px 26px; margin-bottom: 2.5rem;
  background: var(--blush); border-radius: var(--r);
  font-size: .95rem; color: var(--ink-2);
}
.placeholder-box strong { display: block; margin-bottom: .3em; font-weight: 500; }

/* ==========================================================================
   Scroll-reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-off .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav, .header__cta { display: none; }
  .burger { display: grid; }
  .fab { display: inline-flex; }
  .brand img { height: 30px; }

  .split--reverse .split__media,
  .tech:nth-child(even) .tech__media { order: 0; }
  .split__media--framed::before { display: none; }

  .hero__inner { min-height: 0; }
  .hero__scroll { display: none; }
  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(38,29,24,.52) 0%, rgba(38,29,24,.62) 45%, rgba(38,29,24,.80) 100%);
  }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .footer__top { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}

@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step__num { font-size: 1.6rem; }
  .btn-row .btn { width: 100%; }
  .fab { padding: 14px 18px; right: 14px; bottom: 14px; }
  .footer__bottom { justify-content: flex-start; }
  .ba__label { font-size: .6rem; padding: 6px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .fab, .modal, .hero__scroll, .btn-row { display: none !important; }
  body { background: #fff; }
}
