/* ============================================================
   THE HEALING LOUNGE — Design system  "stille luxe"
   Used by every public page, the booking flow and emails.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  /* — palette — */
  --espresso:#241910;     /* base dark — warm bruin/espresso */
  --espresso-900:#180F08;
  --cocoa:#3E2A18;
  --cocoa-700:#52371F;
  --honey:#BC813A;        /* primary accent — honing/amber */
  --honey-bright:#D2964A;
  --gold:#D7B877;         /* soft gold */
  --gold-soft:#E8D3A4;
  --linen:#F3ECDE;        /* main light surface */
  --linen-deep:#E9DDC8;
  --paper:#FBF6EC;        /* lightest */
  --green:#3A4A33;        /* deep green — rust */
  --green-soft:#5C6B4E;
  --rood:#B0543F;         /* rode licht therapie accent */
  --rood-soft:#C9745E;

  /* — ink — */
  --ink:#2B1F15;          /* text on light */
  --ink-soft:#7A6A57;     /* muted text on light */
  --ink-faint:#AD9C86;    /* faint text / hairlines */
  --cream:#F3ECDE;        /* text on dark */
  --cream-soft:#C9B89E;   /* muted on dark */

  /* — type — */
  --serif:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:'Mulish', system-ui, -apple-system, sans-serif;

  /* — geometry — */
  --r-sm:8px; --r-md:14px; --r-lg:22px; --r-xl:34px; --r-pill:999px;
  --container:1240px;
  --shadow-sm:0 2px 10px rgba(36,25,16,.07);
  --shadow-md:0 14px 40px rgba(36,25,16,.12);
  --shadow-lg:0 30px 80px rgba(24,15,8,.22);
  --ease:cubic-bezier(.22,.61,.27,1);

  /* — section rhythm — */
  --section-y:clamp(72px,10vw,140px);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--sans); font-weight:400; font-size:17px; line-height:1.7;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--honey); color:var(--paper); }

/* ---------- typography ---------- */
.serif{ font-family:var(--serif); }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.06; letter-spacing:.004em; margin:0; color:var(--ink); }
.display{ font-size:clamp(44px,6.6vw,88px); font-weight:500; line-height:1.0; letter-spacing:-.01em; }
h1,.h1{ font-size:clamp(34px,5vw,62px); }
h2,.h2{ font-size:clamp(28px,3.8vw,46px); }
h3,.h3{ font-size:clamp(21px,2.2vw,28px); }
p{ margin:0 0 1.1em; text-wrap:pretty; }
.lead{ font-size:clamp(18px,1.5vw,21px); line-height:1.7; color:var(--ink-soft); }
.eyebrow{
  font-family:var(--sans); font-weight:600; font-size:12px; letter-spacing:.34em;
  text-transform:uppercase; color:var(--honey);
}
.eyebrow.on-dark{ color:var(--gold); }
.muted{ color:var(--ink-soft); }
em,.it{ font-style:italic; }
.serif-it{ font-family:var(--serif); font-style:italic; }

/* ---------- layout ---------- */
.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:clamp(22px,5vw,56px); }
.container-wide{ max-width:1480px; }
.section{ padding-block:var(--section-y); }
.stack > * + *{ margin-top:1rem; }
.center{ text-align:center; }
.grid{ display:grid; gap:clamp(18px,2vw,30px); }
.flow > * + *{ margin-top:1.2em; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-family:var(--sans); font-weight:600; font-size:14.5px; letter-spacing:.04em;
  padding:15px 28px; border-radius:var(--r-pill); border:1px solid transparent;
  transition:transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  cursor:pointer; line-height:1; white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--espresso); color:var(--cream); }
.btn-primary:hover{ background:var(--cocoa); box-shadow:var(--shadow-md); }
.btn-gold{ background:var(--honey); color:var(--paper); }
.btn-gold:hover{ background:var(--honey-bright); box-shadow:0 12px 30px rgba(188,129,58,.32); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:rgba(43,31,21,.28); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-ghost.on-dark{ color:var(--cream); border-color:rgba(243,236,222,.4); }
.btn-ghost.on-dark:hover{ border-color:var(--cream); background:rgba(243,236,222,.06); }
.btn-lg{ padding:18px 36px; font-size:15.5px; }
.btn-block{ width:100%; }

/* ---------- chips / pills ---------- */
.chip{
  display:inline-flex; align-items:center; gap:.5em; padding:9px 18px; border-radius:var(--r-pill);
  font-size:13.5px; font-weight:600; letter-spacing:.02em; border:1px solid rgba(43,31,21,.18);
  background:transparent; color:var(--ink-soft); transition:all .3s var(--ease);
}
.chip:hover{ border-color:var(--honey); color:var(--ink); }
.chip.is-active{ background:var(--espresso); color:var(--cream); border-color:var(--espresso); }
.tag{
  display:inline-flex; align-items:center; gap:.45em; font-size:12px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft);
}
.tag .dot{ width:7px; height:7px; border-radius:50%; background:var(--honey); }
.tag.rood .dot{ background:var(--rood); }
.tag.green .dot{ background:var(--green-soft); }

/* ---------- cards ---------- */
.card{ background:var(--paper); border-radius:var(--r-lg); box-shadow:var(--shadow-sm); overflow:hidden; }
.card-bordered{ border:1px solid var(--linen-deep); }

/* treatment card */
.treat-card{
  position:relative; display:flex; flex-direction:column; background:var(--paper);
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.treat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.treat-card .ph, .treat-card img{ aspect-ratio:4/3.1; width:100%; object-fit:cover; }
.treat-card .body{ padding:24px 26px 28px; display:flex; flex-direction:column; gap:10px; flex:1; }
.treat-card .meta-row{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; margin-top:auto; padding-top:14px; }
.treat-card .price{ font-family:var(--serif); font-size:24px; color:var(--ink); }
.treat-card .dur{ font-size:13.5px; color:var(--ink-soft); letter-spacing:.04em; }

/* ---------- image placeholder (warm striped) ---------- */
.ph{
  position:relative; background:
    repeating-linear-gradient(135deg, rgba(120,90,55,.10) 0 14px, rgba(120,90,55,.04) 14px 28px),
    linear-gradient(160deg, var(--linen-deep), var(--linen));
  display:flex; align-items:center; justify-content:center; color:var(--ink-soft);
}
.ph::after{
  content:attr(data-ph); font-family:'SFMono-Regular',ui-monospace,Menlo,monospace;
  font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(122,106,87,.8);
  padding:6px 12px; border:1px dashed rgba(122,106,87,.4); border-radius:6px;
}

/* photo wrapper with soft overlay for legibility */
.photo{ position:relative; overflow:hidden; background:var(--linen-deep); }
.photo img{ width:100%; height:100%; object-fit:cover; }
.photo .scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(24,15,8,.06), rgba(24,15,8,.55)); }

/* ---------- forms ---------- */
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); }
.input, .field input, .field textarea, .field select{
  font-family:var(--sans); font-size:16px; color:var(--ink); background:var(--paper);
  border:1px solid var(--linen-deep); border-radius:var(--r-sm); padding:14px 16px;
  transition:border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color:var(--honey); box-shadow:0 0 0 3px rgba(188,129,58,.16);
}
.checkbox{ display:flex; gap:14px; align-items:flex-start; cursor:pointer; }
.checkbox input{ width:22px; height:22px; margin-top:2px; accent-color:var(--honey); flex:none; }

/* ---------- dividers & misc ---------- */
.rule{ height:1px; background:linear-gradient(90deg, transparent, rgba(43,31,21,.16), transparent); border:0; }
.rule-gold{ width:54px; height:2px; background:var(--honey); border:0; border-radius:2px; }
.kbd{ font-family:ui-monospace,monospace; font-size:12px; padding:2px 7px; border-radius:5px; background:var(--linen-deep); }

/* focus visibility (accessibility) */
:focus-visible{ outline:2px solid var(--honey); outline-offset:3px; border-radius:3px; }

/* dark sections */
.on-dark-bg{ background:var(--espresso); color:var(--cream); }
.on-dark-bg h1,.on-dark-bg h2,.on-dark-bg h3{ color:var(--cream); }
.on-dark-bg .muted{ color:var(--cream-soft); }
.green-bg{ background:var(--green); color:var(--cream); }
.green-bg h1,.green-bg h2,.green-bg h3{ color:var(--cream); }

/* ============================================================
   SITE CHROME — header / footer (injected by site.js)
   ============================================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:60;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px clamp(22px,5vw,56px); gap:24px;
  transition:background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.transparent{ background:linear-gradient(180deg, rgba(24,15,8,.55) 0%, rgba(24,15,8,.12) 60%, rgba(24,15,8,0) 100%); }
.site-header.solid{ background:rgba(251,246,236,.9); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); box-shadow:var(--shadow-sm); border-color:rgba(43,31,21,.07); }
.site-header.on-dark{ color:var(--cream); }
.brand{ display:flex; align-items:center; gap:13px; font-family:var(--serif); font-size:22px; font-weight:500; letter-spacing:.02em; white-space:nowrap; }
.brand .mark{ width:34px; height:34px; border-radius:50%; border:1.5px solid currentColor; display:grid; place-items:center; font-size:15px; opacity:.92; }
.brand > span{ white-space:nowrap; }
.brand small{ display:block; font-family:var(--sans); font-size:9.5px; letter-spacing:.34em; text-transform:uppercase; opacity:.6; font-weight:600; margin-top:1px; }
.nav{ display:flex; align-items:center; gap:34px; }
.nav a{ font-size:15.5px; font-weight:700; letter-spacing:.02em; position:relative; padding:4px 0; opacity:1; transition:opacity .3s; white-space:nowrap; }
.nav a:hover{ opacity:1; }
.site-header.on-dark .nav a, .site-header.on-dark .brand{ text-shadow:0 1px 14px rgba(24,15,8,.45); }
.site-header.on-dark .burger span{ box-shadow:0 1px 8px rgba(24,15,8,.4); }
.nav a::after{ content:''; position:absolute; left:0; bottom:-3px; width:0; height:1.5px; background:currentColor; transition:width .35s var(--ease); }
.nav a:hover::after, .nav a.active::after{ width:100%; }
.header-right{ display:flex; align-items:center; gap:18px; }
.lang{ display:inline-flex; align-items:center; gap:0; font-size:13px; font-weight:600; letter-spacing:.08em; border:1px solid currentColor; border-radius:var(--r-pill); padding:2px; opacity:.85; }
.lang button{ background:none; border:0; color:inherit; padding:5px 11px; border-radius:var(--r-pill); font-weight:600; font-size:12.5px; letter-spacing:.06em; opacity:.6; transition:all .3s; }
.lang button.on{ background:var(--honey); opacity:1; }
.lang button.on span{ color:var(--paper); }
.lang button span{ color:currentColor; }
.burger{ display:none; background:none; border:0; flex-direction:column; gap:5px; padding:8px; }
.burger span{ width:24px; height:1.6px; background:currentColor; transition:.3s; }

.site-footer{ background:var(--espresso-900); color:var(--cream-soft); padding-block:clamp(56px,7vw,90px) 36px; }
.site-footer a{ transition:color .3s; }
.site-footer a:hover{ color:var(--gold); }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; }
.foot-grid h4{ color:var(--cream); font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; margin-bottom:18px; }
.foot-grid ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; font-size:15px; }
.foot-brand .serif{ font-size:28px; color:var(--cream); margin-bottom:14px; }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; gap:20px; margin-top:54px; padding-top:26px; border-top:1px solid rgba(243,236,222,.12); font-size:13px; letter-spacing:.03em; }

/* mobile nav drawer */
.mobile-nav{ position:fixed; inset:0; z-index:80; background:var(--espresso); color:var(--cream); transform:translateY(-100%); transition:transform .5s var(--ease), visibility .5s; visibility:hidden; overflow-y:auto; overscroll-behavior:contain; display:flex; flex-direction:column; padding:26px clamp(22px,6vw,40px); }
.mobile-nav.open{ transform:translateY(0); visibility:visible; transition:transform .5s var(--ease), visibility 0s; }
.mobile-nav .mn-top{ display:flex; justify-content:space-between; align-items:center; }
.mobile-nav .mn-close{ background:none; border:0; color:var(--cream); font-size:30px; line-height:1; }
.mobile-nav nav{ display:flex; flex-direction:column; gap:6px; margin-top:48px; }
.mobile-nav nav a{ font-family:var(--serif); font-size:34px; padding:10px 0; border-bottom:1px solid rgba(243,236,222,.1); }
@media (max-height:760px){ .mobile-nav nav{ margin-top:28px; } .mobile-nav nav a{ font-size:27px; padding:7px 0; } .mobile-nav .mn-foot{ gap:12px; } }
.mobile-nav .mn-foot{ margin-top:auto; display:flex; flex-direction:column; gap:18px; }

@media (max-width:1024px){
  .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .nav, .header-right .lang, .header-right .btn{ display:none; }
  .burger{ display:flex; }
}
@media (max-width:560px){
  .foot-grid{ grid-template-columns:1fr; }
  .foot-bottom{ flex-direction:column; align-items:flex-start; }
}

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } html{ scroll-behavior:auto; } }

/* assumptions pill (design markers) */
.assume-btn{ position:fixed; right:18px; bottom:18px; z-index:70; background:var(--cocoa); color:var(--gold-soft); border:1px solid rgba(215,184,119,.4); border-radius:var(--r-pill); padding:9px 16px; font-size:12px; font-weight:600; letter-spacing:.08em; box-shadow:var(--shadow-md); display:flex; gap:8px; align-items:center; opacity:.78; transition:opacity .3s; }
.assume-btn:hover{ opacity:1; }

/* ============================================================
   COOKIE CONSENT (AVG / Telecomwet) — injected by site.js
   ============================================================ */
.foot-cookie{ background:none; border:0; padding:0; color:inherit; font:inherit; cursor:pointer; transition:color .3s; }
.foot-cookie:hover{ color:var(--gold); }
.foot-admin{ opacity:.55; }
.foot-admin:hover{ opacity:1; }

/* WhatsApp — vast aan zijkant, niet tegen onderkant */
.hl-wa-dock{ position:fixed; z-index:90; pointer-events:none; bottom:28px; }
.hl-wa-dock[hidden]{ display:none !important; }
.hl-wa-dock.hl-wa-right{ right:0; left:auto; }
.hl-wa-dock.hl-wa-left{ left:0; right:auto; }
.hl-wa-link{
  pointer-events:auto;
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px;
  background:#25D366; color:#fff;
  text-decoration:none;
  transition:filter .2s;
}
.hl-wa-dock.hl-wa-right .hl-wa-link{ border-radius:10px 0 0 10px; }
.hl-wa-dock.hl-wa-left .hl-wa-link{ border-radius:0 10px 10px 0; }
.hl-wa-link:hover{ filter:brightness(1.06); color:#fff; }
.hl-wa-link svg{ width:20px; height:20px; }
@media (max-width:560px){
  .hl-wa-dock{ bottom:20px; }
  .hl-wa-link{ width:36px; height:36px; }
  .hl-wa-link svg{ width:18px; height:18px; }
}
.hl-cookie{ position:fixed; left:18px; right:18px; bottom:18px; z-index:95; max-width:540px; background:var(--paper); color:var(--ink); border:1px solid var(--linen-deep); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:26px 28px; transform:translateY(160%); transition:transform .6s var(--ease); }
.hl-cookie.show{ transform:none; }
.hl-cookie h4{ font-family:var(--serif); font-weight:600; font-size:23px; margin:0 0 10px; color:var(--ink); }
.hl-cookie p{ font-size:14.5px; line-height:1.6; color:var(--ink-soft); margin:0 0 16px; }
.hl-cookie p a{ color:var(--honey); border-bottom:1px solid rgba(188,129,58,.4); }
.hl-cookie .ck-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.hl-cookie .ck-actions .btn{ flex:1; min-width:150px; padding:13px 20px; }
.hl-cookie .ck-link{ background:none; border:0; color:var(--ink-soft); font-family:inherit; font-size:13.5px; font-weight:600; letter-spacing:.02em; cursor:pointer; text-decoration:underline; text-underline-offset:3px; padding:6px 2px; }
.hl-cookie .ck-link:hover{ color:var(--ink); }
.ck-prefs{ margin:4px 0 18px; display:flex; flex-direction:column; gap:2px; }
.ck-row{ display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-top:1px solid var(--linen-deep); }
.ck-row:first-child{ border-top:0; }
.ck-row .ck-text{ flex:1; }
.ck-row .ck-text strong{ font-size:14.5px; color:var(--ink); display:block; }
.ck-row .ck-text span{ font-size:13px; color:var(--ink-soft); }
.ck-switch{ position:relative; width:46px; height:26px; flex:none; }
.ck-switch input{ opacity:0; width:0; height:0; position:absolute; }
.ck-track{ position:absolute; inset:0; background:var(--linen-deep); border-radius:999px; transition:background .3s; cursor:pointer; }
.ck-track::after{ content:''; position:absolute; left:3px; top:3px; width:20px; height:20px; border-radius:50%; background:var(--paper); box-shadow:0 1px 3px rgba(0,0,0,.2); transition:transform .3s; }
.ck-switch input:checked + .ck-track{ background:var(--honey); }
.ck-switch input:checked + .ck-track::after{ transform:translateX(20px); }
.ck-switch input:disabled + .ck-track{ background:var(--green-soft); opacity:.6; cursor:not-allowed; }
.ck-foot-actions{ display:flex; gap:10px; flex-wrap:wrap; }
@media (max-width:560px){ .hl-cookie{ left:10px; right:10px; bottom:10px; padding:22px 20px; } .hl-cookie .ck-actions .btn{ min-width:120px; } }
