
    :root {
      --greige: #C8B8A2;
      --off-white: #F5F0EB;
      --sand: #E8DDD0;
      --oak: #7A5C3A;
      --anthracite: #1E1E1E;
      --mid: #5A524A;
      --line: rgba(122,92,58,0.18);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', sans-serif;
      --max: 1160px;
      --px: clamp(1.25rem, 5vw, 3.5rem);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 90px; }
    body { background: var(--off-white); color: var(--anthracite); font-family: var(--sans); font-weight: 300; font-size: clamp(15px,1.05vw,17px); line-height: 1.75; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    .is-hidden { display: none !important; }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
      .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-photo { opacity: 1 !important; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

    /* ===== SECTIE-WATERMERK ===== */
    section { position: relative; overflow: hidden; }
    .wm { position: absolute; top: -0.05em; right: -0.06em; font-family: var(--serif); font-weight: 300; font-size: clamp(10rem,22vw,20rem); line-height: 1; color: rgba(122,92,58,.05); user-select: none; pointer-events: none; z-index: 0; }
    section .inner { position: relative; z-index: 1; }

    /* ===== HERO KUNSTWERK (fallback zonder foto) ===== */
    .hero-art { width: min(420px,82%); height: min(520px,84%); position: relative; }
    .hero-art svg { width: 100%; height: 100%; overflow: visible; }
    .arch-back { animation: drift 9s ease-in-out infinite alternate; }
    .arch-front { animation: drift 9s 1.2s ease-in-out infinite alternate-reverse; }
    @keyframes drift { from { transform: translateY(0); } to { transform: translateY(-10px); } }
    .laser-line { stroke-dasharray: 340; stroke-dashoffset: 340; animation: beam 4.5s ease-in-out 1.2s infinite; }
    @keyframes beam { 0% { stroke-dashoffset: 340; opacity: 0; } 15% { opacity: 1; } 55% { stroke-dashoffset: 0; opacity: 1; } 80% { opacity: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }
    @media (prefers-reduced-motion: reduce) { .laser-line { stroke-dashoffset: 0; opacity: .8; animation: none; } .arch-back, .arch-front { animation: none; } }

    /* ===== BEHANDELING-ICONEN ===== */
    .treatment-icon { width: 30px; height: 30px; margin-bottom: 1rem; }
    .treatment-icon svg { width: 100%; height: 100%; stroke: var(--oak); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

    /* ===== MARQUEE STRIP ===== */
    .marquee { background: var(--anthracite); padding: 1.3rem 0; overflow: hidden; border-top: 1px solid rgba(200,184,162,.12); border-bottom: 1px solid rgba(200,184,162,.12); }
    .marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
    .marquee span { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.15rem; color: rgba(245,240,235,.75); white-space: nowrap; padding: 0 1.4rem; display: flex; align-items: center; gap: 2.8rem; }
    .marquee span::after { content: '·'; color: var(--oak); font-style: normal; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; } }

    /* ===== NAV ===== */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem var(--px); background: rgba(245,240,235,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
    .nav-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; line-height: 1.1; }
    .nav-logo span { display: block; font-size: .55rem; font-family: var(--sans); font-weight: 400; letter-spacing: .28em; color: var(--oak); text-transform: uppercase; margin-top: .15rem; }
    .nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
    .nav-links a { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); transition: color .2s; }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--anthracite); }
    .nav-cta { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; padding: .55rem 1.3rem; background: var(--anthracite); color: var(--off-white); border: 1px solid var(--anthracite); cursor: pointer; transition: background .2s, color .2s; white-space: nowrap; }
    .nav-cta:hover, .nav-cta:focus-visible { background: transparent; color: var(--anthracite); }
    .nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: .4rem; }
    .nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--anthracite); transition: transform .25s, opacity .25s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99; background: var(--off-white); border-bottom: 1px solid var(--line); padding: 1rem var(--px) 1.4rem; }
    .mobile-menu.open { display: block; }
    .mobile-menu a { display: block; padding: .8rem 0; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); border-bottom: 1px solid rgba(122,92,58,.08); }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ===== HERO ===== */
    #home { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 80px; }
    .hero-left { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,8vw,8rem) var(--px); }
    .hero-eyebrow { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--oak); margin-bottom: 1.6rem; opacity: 0; animation: fadeUp .8s .2s forwards; }
    .hero-title { font-family: var(--serif); font-size: clamp(2.6rem,5vw,4.8rem); font-weight: 300; line-height: 1.08; margin-bottom: 1.8rem; opacity: 0; animation: fadeUp .9s .35s forwards; }
    .hero-title em { font-style: italic; color: var(--oak); }
    .hero-sub { max-width: 420px; color: var(--mid); font-size: .93rem; margin-bottom: 2.4rem; opacity: 0; animation: fadeUp .9s .5s forwards; }
    .hero-actions { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; opacity: 0; animation: fadeUp .9s .65s forwards; }
    .hero-actions-row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .hero-micro { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--oak); }
    .btn-primary { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; padding: .85rem 2.1rem; background: var(--anthracite); color: var(--off-white); border: 1px solid var(--anthracite); cursor: pointer; transition: background .25s, color .25s; display: inline-block; text-align: center; }
    .btn-primary:hover, .btn-primary:focus-visible { background: transparent; color: var(--anthracite); }
    .btn-ghost { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); border-bottom: 1px solid var(--line); padding-bottom: .12rem; transition: color .2s, border-color .2s; }
    .btn-ghost:hover, .btn-ghost:focus-visible { color: var(--anthracite); border-color: var(--oak); }

    .hero-right { position: relative; background: var(--sand); overflow: hidden; }
    .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: fadeIn 1.2s .4s forwards; }
    .hero-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--greige) 0%, var(--sand) 60%, var(--off-white) 100%); }
    .hero-deco { width: min(320px,70%); height: min(440px,80%); border: 1px solid rgba(122,92,58,.22); display: flex; align-items: center; justify-content: center; }
    .hero-deco-inner { font-family: var(--serif); font-size: clamp(5rem,10vw,9rem); font-weight: 300; color: rgba(122,92,58,.18); letter-spacing: -.04em; line-height: 1; user-select: none; }
    .hero-tag { position: absolute; bottom: 2rem; right: 1.4rem; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--off-white); writing-mode: vertical-rl; text-shadow: 0 1px 3px rgba(30,30,30,.65), 0 0 16px rgba(30,30,30,.5); z-index: 2; }

    /* ===== TRUST STRIP ===== */
    #trust { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem var(--px); }
    #trust .inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; max-width: var(--max); margin: 0 auto; }
    .trust-item { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); display: flex; align-items: center; gap: .55rem; }
    .trust-item::before { content: ''; width: 4px; height: 4px; background: var(--oak); border-radius: 50%; flex-shrink: 0; }

    /* ===== SECTIONS ===== */
    section { padding: clamp(4rem,10vw,8rem) var(--px); }
    .inner { max-width: var(--max); margin: 0 auto; }
    .section-label { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--oak); margin-bottom: 1.1rem; }
    .section-title { font-family: var(--serif); font-size: clamp(1.9rem,3.8vw,3.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 1.4rem; }
    .section-title em { font-style: italic; color: var(--oak); }
    .divider { width: 2.2rem; height: 1px; background: var(--oak); margin: 1.6rem 0; }

    /* ===== INTRO STRIP ===== */
    #intro { background: var(--anthracite); color: var(--off-white); padding: clamp(2.5rem,6vw,5rem) var(--px); }
    #intro .inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
    .intro-text { font-family: var(--serif); font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 300; font-style: italic; max-width: 640px; line-height: 1.5; }
    .intro-detail { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--greige); white-space: nowrap; }

    /* ===== BEHANDELINGEN ===== */
    #behandelingen { background: var(--off-white); }
    .treatments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem; }
    .treatment-card { background: var(--off-white); padding: 2rem 1.8rem 3.2rem; transition: background .25s; position: relative; overflow: hidden; display: block; }
    .treatment-card:hover, .treatment-card:focus-visible { background: var(--sand); }
    .treatment-card::after { content: '→'; position: absolute; bottom: 1.4rem; right: 1.8rem; font-size: 1rem; color: var(--oak); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; }
    .treatment-card:hover::after, .treatment-card:focus-visible::after { opacity: 1; transform: translateX(0); }
    .treatment-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: .4rem; line-height: 1.2; }
    .treatment-desc { font-size: .8rem; color: var(--mid); line-height: 1.65; }
    .treatment-price-range { font-size: .75rem; color: var(--oak); margin-top: .6rem; font-weight: 400; }

    /* ===== GALERIJ (kliniekfoto's) ===== */
    #galerij { background: var(--off-white); padding-top: 0; }
    .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
    .gallery-grid figure { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); position: relative; margin: 0; }
    .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .gallery-grid figure:hover img { transform: scale(1.03); }
    .gallery-grid figcaption { position: absolute; bottom: .8rem; left: .9rem; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--off-white); text-shadow: 0 0 10px rgba(30,30,30,.5); }

    /* ===== PRIJZEN (accordeons) ===== */
    #prijzen { background: var(--sand); }
    .price-acc { border: 1px solid var(--line); border-bottom: none; background: var(--off-white); }
    .price-acc:last-of-type { border-bottom: 1px solid var(--line); }
    .price-acc summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.6rem; transition: background .2s; }
    .price-acc summary::-webkit-details-marker { display: none; }
    .price-acc summary:hover { background: rgba(232,221,208,.45); }
    .price-acc-title { font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.45rem); font-weight: 400; }
    .price-acc-meta { display: flex; align-items: baseline; gap: 1.2rem; }
    .price-acc-from { font-size: .72rem; letter-spacing: .1em; color: var(--oak); white-space: nowrap; }
    .price-acc-plus { font-family: var(--serif); font-size: 1.4rem; color: var(--oak); line-height: 1; transition: transform .25s; }
    .price-acc[open] .price-acc-plus { transform: rotate(45deg); }
    .price-acc-body { padding: 0 1.6rem 1.8rem; }
    .price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
    .price-category { margin-bottom: 1.6rem; }
    .price-category-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--oak); margin-bottom: .7rem; padding-bottom: .45rem; border-bottom: 1px solid var(--line); }
    .price-row { display: flex; justify-content: space-between; align-items: baseline; padding: .55rem 0; border-bottom: 1px solid rgba(122,92,58,.08); gap: 1rem; }
    .price-name { font-size: .85rem; color: var(--mid); }
    .price-amount { font-family: var(--serif); font-size: 1rem; color: var(--anthracite); white-space: nowrap; }
    .price-cta { font-size: .78rem; color: var(--mid); margin-top: .4rem; }
    .price-cta a { color: var(--oak); border-bottom: 1px solid var(--line); }
    .price-cta a:hover { border-color: var(--oak); }

    .kuur-card { background: var(--anthracite); color: var(--off-white); padding: 1.8rem 2rem; margin-top: 2.2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .kuur-card-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
    .kuur-card-sub { font-size: .8rem; color: var(--greige); margin-top: .2rem; max-width: 480px; }
    .kuur-card .btn-primary { background: var(--off-white); color: var(--anthracite); border-color: var(--off-white); }
    .kuur-card .btn-primary:hover { background: transparent; color: var(--off-white); }

    /* ===== RESULTATEN / REVIEWS / BLOG (nu verborgen — zie opmerkingen in HTML) ===== */
    .ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
    .ba-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--sand); }
    .ba-card img { width: 100%; height: 100%; object-fit: cover; }
    .ba-tag { position: absolute; top: 1rem; left: 1rem; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; background: var(--off-white); color: var(--oak); padding: .3rem .7rem; }
    .ba-label { position: absolute; bottom: 1rem; left: 1rem; font-size: .7rem; color: var(--off-white); text-shadow: 0 0 8px rgba(30,30,30,.5); }
    #reviews { background: var(--sand); }
    #reviews .wm { color: rgba(122,92,58,.06); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
    .review-stars { color: var(--greige); letter-spacing: .2em; margin-bottom: .9rem; }
    .review-text { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(245,240,235,.8); line-height: 1.65; margin-bottom: 1.2rem; }
    .review-author { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
    .review-treatment { font-size: .68rem; color: var(--greige); letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }
    .google-badge { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--greige); border: 1px solid rgba(200,184,162,.3); padding: .7rem 1.3rem; transition: border-color .2s, color .2s; }
    .google-badge:hover { border-color: var(--oak); color: var(--anthracite); }
    .salonized-reviews-wrap { margin-top: 2.5rem; min-height: 60px; }
    #reviews .google-badge { color: var(--mid); border-color: var(--line); }
    #reviews .google-badge svg { fill: var(--oak); }

    /* ===== OVER ONS ===== */
    #over { background: var(--off-white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
    .about-visual { position: relative; aspect-ratio: 4/5; background: var(--sand); overflow: hidden; }
    .about-visual img { width: 100%; height: 100%; object-fit: cover; }
    .about-photo { position: absolute; inset: 0; z-index: 1; }
    .about-fallback { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--sand), var(--greige)); }
    .about-initials { font-family: var(--serif); font-size: clamp(4rem,8vw,7rem); font-weight: 300; color: rgba(122,92,58,.2); }
    .about-badge { position: absolute; bottom: 1.4rem; right: 1.4rem; background: var(--anthracite); color: var(--off-white); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; padding: .9rem 1.1rem; line-height: 1.7; z-index: 2; }
    .credentials { display: grid; gap: .7rem; margin-top: 1.8rem; }
    /* Keurmerken-band */
    #keurmerken { background: var(--off-white); border-top: 1px solid var(--line); padding: clamp(2.5rem,6vw,4rem) var(--px); }
    #keurmerken .inner { text-align: center; }
    .keurmerk-label { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--oak); margin-bottom: 2rem; }
    .keurmerk-logos { display: flex; align-items: center; justify-content: center; gap: clamp(2.5rem,7vw,5rem); flex-wrap: wrap; }
    .keurmerk-logos img { height: 56px; width: auto; opacity: .9; transition: opacity .2s; }
    .keurmerk-logos img:hover { opacity: 1; }
    .keurmerk-note { font-size: .78rem; color: var(--mid); margin-top: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    @media (max-width: 560px) { .keurmerk-logos img { height: 44px; } }
    .credential { font-size: .82rem; color: var(--mid); padding-left: 1.3rem; position: relative; }
    .credential::before { content: '—'; position: absolute; left: 0; color: var(--oak); }

    /* ===== LOCATIE ===== */
    #locatie { background: var(--sand); }
    .locatie-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
    .locatie-visual { aspect-ratio: 3/2; overflow: hidden; background: var(--off-white); }
    .locatie-visual img { width: 100%; height: 100%; object-fit: cover; }
    .locatie-points { display: grid; gap: .7rem; margin-top: 1.6rem; }
    .locatie-points div { font-size: .84rem; color: var(--mid); padding-left: 1.3rem; position: relative; }
    .locatie-points div::before { content: '—'; position: absolute; left: 0; color: var(--oak); }

    /* ===== WAAROM NUM ===== */
    #waarom { background: var(--off-white); }
    .why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
    .why-card { background: var(--sand); padding: 2rem; }
    .why-num { font-family: var(--serif); font-size: 2rem; color: rgba(122,92,58,.35); font-weight: 300; margin-bottom: 1rem; }
    .why-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: .6rem; }
    .why-card p { font-size: .84rem; color: var(--mid); line-height: 1.7; }

    /* ===== AFSPRAAK ===== */
    #afspraak { background: var(--off-white); border-top: 1px solid var(--line); }
    .booking-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
    .booking-info { display: grid; gap: 1.4rem; }
    .info-item { display: flex; gap: 1rem; align-items: flex-start; }
    .info-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: .2rem; }
    .info-icon svg { width: 100%; height: 100%; }
    .info-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--oak); }
    .info-val { font-size: .9rem; }
    .booking-form { display: flex; flex-direction: column; gap: 1.1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
    .field { display: flex; flex-direction: column; gap: .35rem; }
    .field label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mid); }
    .field input, .field select, .field textarea { font-family: var(--sans); font-weight: 300; font-size: .9rem; padding: .75rem .9rem; background: transparent; border: 1px solid var(--line); color: var(--anthracite); outline: none; transition: border-color .2s; border-radius: 0; -webkit-appearance: none; appearance: none; }
    .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A5C3A'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--oak); }
    .field textarea { min-height: 110px; resize: vertical; }
    .salonized-btn { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; padding: .8rem 1.5rem; background: var(--oak); color: var(--off-white); border: 1px solid var(--oak); transition: background .2s, color .2s; }
    .salonized-btn:hover { background: transparent; color: var(--oak); }
    .widget-frame { border: 1px solid var(--line); background: var(--off-white); overflow: hidden; }
    .booking-tabs { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
    .booking-tab { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: .7rem 1.4rem; background: transparent; border: 1px solid var(--line); color: var(--mid); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
    .booking-tab:hover { border-color: var(--oak); color: var(--anthracite); }
    .booking-tab.active { background: var(--anthracite); color: var(--off-white); border-color: var(--anthracite); }
    .booking-panel { display: none; }
    .booking-panel.active { display: block; }
    .booking-panel-note { font-size: .82rem; color: var(--mid); margin-bottom: 1rem; }
    .booking-panel-note strong { color: var(--oak); font-weight: 400; }

    /* ===== FOOTER ===== */
    footer { background: var(--anthracite); color: rgba(245,240,235,.5); padding: 3rem var(--px) 4rem; }
    footer .inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.8rem; }
    .footer-logo { font-family: var(--serif); font-size: 1rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--off-white); }
    .footer-copy { font-size: .72rem; line-height: 1.9; }
    .footer-links { display: flex; gap: 1.6rem; list-style: none; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--off-white); }

    /* ===== WHATSAPP FLOAT (alleen desktop — mobiel heeft de vaste balk) ===== */
    .whatsapp-float { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(30,30,30,.25); transition: transform .2s; }
    .whatsapp-float:hover { transform: scale(1.08); }
    .whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

    /* ===== STICKY MOBIELE CTA-BALK ===== */
    .mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: rgba(245,240,235,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom)); grid-template-columns: 1fr 1.4fr; gap: .7rem; }
    .mobile-cta-bar .bar-primary { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; text-align: center; padding: .85rem .5rem; background: transparent; color: var(--anthracite); border: 1px solid var(--anthracite); }
    .mobile-cta-bar .bar-wa { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; text-align: center; padding: .85rem .5rem; background: #25D366; border: 1px solid #25D366; color: #fff; font-weight: 400; display: flex; align-items: center; justify-content: center; gap: .5rem; }
    .mobile-cta-bar .bar-wa svg { width: 17px; height: 17px; fill: #fff; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 880px) {
      .nav-links, nav .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      #home { grid-template-columns: 1fr; }
      .hero-right { min-height: 46svh; order: -1; }
      .hero-left { padding-top: 2.5rem; padding-bottom: 3rem; }
      #home { min-height: auto; }
      .about-grid, .locatie-grid, .booking-head { grid-template-columns: 1fr; }
      .contact-split { grid-template-columns: 1fr !important; gap: 3rem !important; }
      .locatie-grid > div:first-child { order: 2; }
      .treatments-grid { grid-template-columns: 1fr 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(3,1fr); gap: .5rem; }
      .ba-grid, .reviews-grid { grid-template-columns: 1fr; }
      .whatsapp-float { display: none; }
      .mobile-cta-bar { display: grid; }
      body { padding-bottom: 70px; }
      footer { padding-bottom: 5.5rem; }
    }
    @media (max-width: 560px) {
      .treatments-grid { grid-template-columns: 1fr; }
      .treatment-card { padding: 1.5rem 1.4rem 2.6rem; }
      .form-row { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid figure:nth-child(3) { display: none; }
      .price-acc summary { padding: 1.1rem 1.1rem; }
      .price-acc-body { padding: 0 1.1rem 1.4rem; }
      .price-acc-from { display: none; }
      .hero-title { font-size: 2.3rem; }
      .hero-actions .btn-primary { width: 100%; }
    }
  
/* ============ NIEUW: CONTACTBALK, MEGAMENU, SUBPAGINA'S ============ */

/* Contactbalk bovenaan */
#topbar { background: var(--anthracite); color: rgba(245,240,235,.9); font-size: .72rem; letter-spacing: .08em; }
#topbar .inner { max-width: var(--max); margin: 0 auto; padding: .5rem var(--px); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
#topbar a { color: rgba(245,240,235,.9); display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
#topbar a:hover { color: #fff; }
#topbar .tb-left { display: flex; gap: 1.6rem; flex-wrap: wrap; }
#topbar .tb-right { color: var(--greige); }
#topbar svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* Nav aanpassing: nu onder de topbar */
nav { position: sticky; top: 0; }
body.has-topbar nav { position: sticky; top: 0; }

/* MEGAMENU */
.nav-links li.has-mega { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--off-white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 28px rgba(30,30,30,.07); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 90; }
.nav-links li.has-mega:hover .mega, .nav-links li.has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: var(--max); margin: 0 auto; padding: 2.2rem var(--px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2.4rem; }
.mega-col h4 { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--oak); margin-bottom: .9rem; font-weight: 400; }
.mega-item { display: block; padding: .5rem 0; border-bottom: 1px solid rgba(122,92,58,.08); }
.mega-item:last-child { border-bottom: none; }
.mega-item strong { display: block; font-family: var(--serif); font-size: 1.02rem; font-weight: 400; color: var(--anthracite); line-height: 1.25; }
.mega-item span { font-size: .74rem; color: var(--mid); }
.mega-item:hover strong { color: var(--oak); }
.mega-feature { background: var(--sand); padding: 1.4rem 1.5rem; }
.mega-feature p { font-size: .8rem; color: var(--mid); margin: .5rem 0 .9rem; line-height: 1.55; }
.mega-feature .btn-primary { padding: .6rem 1.3rem; font-size: .66rem; }
.nav-links .caret { display: inline-block; margin-left: .35rem; font-size: .6rem; }

/* Mobiel menu: uitklapbare groepen */
.mm-group > button { width: 100%; background: none; border: none; text-align: left; padding: .8rem 0; font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(122,92,58,.08); }
.mm-group > button .pl { color: var(--oak); font-family: var(--serif); font-size: 1.1rem; transition: transform .2s; }
.mm-group.open > button .pl { transform: rotate(45deg); }
.mm-sub { display: none; padding: .2rem 0 .6rem .8rem; }
.mm-group.open .mm-sub { display: block; }
.mm-sub a { display: block; padding: .55rem 0; font-size: .78rem; letter-spacing: .06em; text-transform: none; color: var(--mid); border-bottom: 1px solid rgba(122,92,58,.05); }

/* ============ SUBPAGINA COMPONENTEN ============ */
.page-hero { background: var(--sand); padding: clamp(3rem,7vw,5rem) var(--px) clamp(2.5rem,5vw,3.5rem); position: relative; overflow: hidden; }
.page-hero .inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.crumbs { font-size: .7rem; letter-spacing: .06em; color: var(--mid); margin-bottom: 1.4rem; }
.crumbs a { color: var(--oak); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--mid); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem,4.4vw,3.4rem); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--oak); }
.page-hero .lead { font-size: .96rem; color: var(--mid); max-width: 60ch; line-height: 1.7; }
.page-hero .hero-actions { margin-top: 1.8rem; }

.prose { padding: clamp(3rem,6vw,4.5rem) var(--px); }
.prose .inner { max-width: 820px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 300; margin: 2.4rem 0 1rem; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--oak); }
.prose h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin: 1.8rem 0 .6rem; color: var(--anthracite); }
.prose p { color: var(--mid); margin-bottom: 1rem; line-height: 1.8; }
.prose ul { list-style: none; margin: 0 0 1.4rem; }
.prose ul li { color: var(--mid); padding-left: 1.5rem; position: relative; margin-bottom: .55rem; line-height: 1.7; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; background: var(--oak); border-radius: 50%; }
.prose strong { color: var(--anthracite); font-weight: 400; }
.prose a.inline { color: var(--oak); border-bottom: 1px solid var(--line); }
.prose a.inline:hover { border-color: var(--oak); }

.callout { background: var(--sand); border-left: 3px solid var(--oak); padding: 1.6rem 1.8rem; margin: 2rem 0; }
.callout p { margin: 0; font-size: .92rem; }
.callout strong { color: var(--oak); }

.steps { counter-reset: st; margin: 1.5rem 0 2rem; }
.step { counter-increment: st; position: relative; padding-left: 3.2rem; margin-bottom: 1.4rem; }
.step::before { content: counter(st); position: absolute; left: 0; top: -.15rem; width: 2.2rem; height: 2.2rem; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1rem; color: var(--oak); }
.step h3 { margin: 0 0 .25rem; font-size: 1.06rem; }
.step p { margin: 0; font-size: .89rem; }

.pricebox { border: 1px solid var(--line); background: var(--off-white); padding: 1.8rem 2rem; margin: 2rem 0; }
.pricebox h3 { font-family: var(--serif); font-size: 1.25rem; margin: 0 0 1rem; font-weight: 400; }
.pricebox .price-row { display: flex; justify-content: space-between; align-items: baseline; padding: .5rem 0; border-bottom: 1px solid rgba(122,92,58,.09); gap: 1rem; }
.pricebox .price-row:last-of-type { border-bottom: none; }
.pricebox .price-name { font-size: .88rem; color: var(--mid); }
.pricebox .price-amount { font-family: var(--serif); font-size: 1.02rem; white-space: nowrap; }
.pricebox .note { font-size: .78rem; color: var(--mid); margin-top: 1rem; }

/* FAQ accordeon */
.faq { border-top: 1px solid var(--line); margin: 1.5rem 0 2rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; position: relative; font-family: var(--serif); font-size: 1.08rem; color: var(--anthracite); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.4rem; color: var(--oak); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 0 1.2rem; }
.faq .faq-body p { font-size: .9rem; margin-bottom: .7rem; }

/* Kaartenraster (gerelateerde pagina's) */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 1.6rem; }
.card { background: var(--off-white); padding: 1.6rem 1.5rem 2.4rem; position: relative; transition: background .25s; display: block; }
.card:hover { background: var(--sand); }
.card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin: 0 0 .35rem; }
.card p { font-size: .8rem; color: var(--mid); margin: 0; line-height: 1.6; }
.card .from { font-size: .74rem; color: var(--oak); margin-top: .5rem; display: block; }
.card::after { content: '→'; position: absolute; bottom: 1.1rem; right: 1.5rem; color: var(--oak); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; }
.card:hover::after { opacity: 1; transform: translateX(0); }

.cta-band { background: var(--anthracite); color: var(--off-white); padding: clamp(2.5rem,5vw,3.5rem) var(--px); }
.cta-band .inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 300; margin: 0 0 .4rem; }
.cta-band p { color: var(--greige); font-size: .88rem; margin: 0; max-width: 46ch; }
.cta-band .btn-primary { background: var(--off-white); color: var(--anthracite); border-color: var(--off-white); }
.cta-band .btn-primary:hover { background: transparent; color: var(--off-white); }

.section-alt { background: var(--sand); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.spec-list { display: grid; gap: .5rem; }
.spec-list div { font-size: .87rem; color: var(--mid); padding-left: 1.3rem; position: relative; }
.spec-list div::before { content: '—'; position: absolute; left: 0; color: var(--oak); }

/* Blog */
.post-meta { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--oak); margin-bottom: 1rem; }
.blog-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.blog-item { background: var(--off-white); padding: 1.8rem 2rem; display: block; transition: background .2s; }
.blog-item:hover { background: var(--sand); }
.blog-item h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin: .3rem 0 .5rem; }
.blog-item p { font-size: .87rem; color: var(--mid); margin: 0; line-height: 1.65; }


/* ============ COOKIEBANNER ============ */
#num-cookiebanner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--off-white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 26px rgba(30,30,30,.10);
  transform: translateY(100%); transition: transform .32s ease; }
#num-cookiebanner.ncb-zichtbaar { transform: translateY(0); }
.ncb-inner { max-width: var(--max); margin: 0 auto; padding: 1.4rem var(--px);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ncb-tekst { flex: 1 1 380px; }
.ncb-tekst strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 500;
  display: block; margin-bottom: .3rem; color: var(--anthracite); }
.ncb-tekst p { font-size: .82rem; color: var(--mid); line-height: 1.6; margin: 0; max-width: 68ch; }
.ncb-tekst a { color: var(--oak); border-bottom: 1px solid var(--line); }
.ncb-tekst a:hover { border-color: var(--oak); }
.ncb-knoppen { display: flex; gap: .7rem; flex-shrink: 0; }
.ncb-btn { font-family: var(--sans); font-size: .7rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; padding: .8rem 1.7rem; cursor: pointer; border-radius: 0;
  transition: background .2s, color .2s, border-color .2s; }
.ncb-weigeren { background: transparent; color: var(--mid); border: 1px solid var(--line); }
.ncb-weigeren:hover { border-color: var(--oak); color: var(--anthracite); }
.ncb-accepteren { background: var(--anthracite); color: var(--off-white); border: 1px solid var(--anthracite); }
.ncb-accepteren:hover { background: transparent; color: var(--anthracite); }
@media (max-width: 700px) {
  .ncb-inner { flex-direction: column; align-items: stretch; gap: 1.1rem; padding-bottom: 1.6rem; }
  .ncb-knoppen { width: 100%; }
  .ncb-btn { flex: 1; text-align: center; padding: .85rem .6rem; }
  body.has-cookiebanner .mobile-cta-bar { bottom: 0; }
}

/* FIX: links in het megamenu erven de nav-link opmaak — resetten */
.nav-links .mega a { text-transform: none; letter-spacing: normal; font-size: 1rem; color: inherit; }
.nav-links .mega .mega-item strong { color: var(--anthracite); }
.nav-links .mega .mega-item span { font-size: .74rem; color: var(--mid); letter-spacing: normal; text-transform: none; }
.nav-links .mega .mega-item:hover strong { color: var(--oak); }
.nav-links .mega a.btn-primary { color: var(--off-white); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.nav-links .mega a.btn-primary:hover { color: var(--anthracite); }
.nav-links .mega .mega-col h4 { letter-spacing: .26em; text-transform: uppercase; }

/* FIX: overflow op smalle schermen */
@media (max-width: 700px) {
  .intro-detail { white-space: normal !important; }
  #intro .inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (max-width: 560px) {
  .page-hero h1 { font-size: 1.9rem; }
  .prose h2 { font-size: 1.5rem; }
}

@media (max-width: 880px) {
  .mega { display: none; }
  .cards { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  #topbar .inner { justify-content: center; font-size: .68rem; }
  #topbar .tb-right { display: none; }
  .page-hero h1 { max-width: none; }
}

/* ============ CONSULT-KEUZE (telefonisch / op locatie) ============ */
.form-fields .consulttype { margin-bottom: 1.4rem; }
.ct-options { display: grid; gap: .7rem; margin-top: .5rem; }
.ct-opt { display: flex; align-items: flex-start; gap: .8rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
  transition: border-color .2s, background .2s; background: #fff; }
.ct-opt:hover { border-color: var(--oak); }
.ct-opt input { margin-top: .25rem; accent-color: var(--oak); width: 18px; height: 18px; flex-shrink: 0; }
.ct-opt span { display: flex; flex-direction: column; gap: .15rem; }
.ct-opt strong { font-family: var(--sans); font-weight: 500; font-size: .95rem; color: var(--anthracite); }
.ct-opt small { font-size: .8rem; color: var(--mid); line-height: 1.5; }
/* geselecteerde optie oplichten */
.ct-opt:has(input:checked) { border-color: var(--oak); background: var(--sand); }
/* de telefonisch-optie krijgt een subtiel accent zodat hij opvalt */
.ct-opt:first-child strong::after { content: "gratis · 15 min"; display: inline-block;
  margin-left: .5rem; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--off-white); background: var(--oak); padding: .18rem .5rem; border-radius: 2px;
  vertical-align: middle; font-weight: 400; }

/* ============ FORMULIER-STATUS (succes / fout) ============ */
.form-status { margin-top: 1rem; font-size: .9rem; line-height: 1.6; }
.form-status:empty { display: none; }
.form-status.success { background: #EDF3ED; border-left: 3px solid #2E6B3E;
  color: #234C2C; padding: 1.1rem 1.3rem; border-radius: 2px; }
.form-status.error { background: #F7ECEA; border-left: 3px solid #A6432F;
  color: #7A2E20; padding: 1.1rem 1.3rem; border-radius: 2px; }

/* ============ MOBIELE OPTIMALISATIE FORMULIER ============ */
@media (max-width: 700px) {
  .ct-opt { padding: .9rem 1rem; }
  .ct-opt strong { font-size: .9rem; }
  /* inputs groot genoeg om niet in te zoomen op iOS (min. 16px) */
  .booking-form input, .booking-form select, .booking-form textarea { font-size: 16px; }
  /* knop over volle breedte, makkelijker te raken met duim */
  .booking-form .btn-primary { align-self: stretch !important; text-align: center;
    padding-top: .95rem; padding-bottom: .95rem; }
}
