/* ==========================================================
   FACE CARE CLINIC — Refined editorial v2
   Palette anchored on #978e86 (warm taupe)
   Inspired by kliniekvoorjou.nl + facelandclinic.com
   ========================================================== */

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

:root {
  /* ── Palette ─────────────────────────────────── */
  /* Anchor — warm taupe (user-specified) */
  --taupe:        #978e86;
  --taupe-light:  #b8b1aa;
  --taupe-dark:   #6f6862;

  /* Complementary warm neutrals (analogous warm-cool blend) */
  --ink:          #2d2826;     /* near-black with warm undertone */
  --ink-soft:     #4a4441;
  --bone:         #f6f1ec;     /* warm off-white */
  --bone-2:       #ede5dc;     /* slightly deeper paper */
  --cream:        #fbf7f2;     /* highlight cream */
  --paper:        #ffffff;

  /* Accent — soft sage green (the calm complement to taupe) */
  --sage:         #8a9b8e;
  --sage-deep:    #6c7e72;

  /* Subtle gold accent for stars/CTAs */
  --gold:         #c8a57a;

  --line:         rgba(45, 40, 38, 0.10);
  --line-soft:    rgba(45, 40, 38, 0.06);
  --line-dark:    rgba(246, 241, 236, 0.14);
  --muted:        #7a7470;
  --muted-light:  #a39d98;

  /* ── Type ─────────────────────────────────── */
  --sans:  'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;

  /* ── Scale ────────────────────────────────── */
  --container: 1320px;
  --container-narrow: 1080px;
  --gutter: clamp(20px, 4vw, 56px);

  /* ── Radii / shadow ───────────────────────── */
  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-soft: 0 18px 60px -28px rgba(45,40,38,0.25);
  --shadow-card: 0 24px 80px -36px rgba(45,40,38,0.35);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 350;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--taupe); color: var(--bone); }

/* ── Type system ───────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--taupe);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }
.eyebrow.light { color: var(--taupe-light); }
.eyebrow.light::before { background: var(--taupe-light); }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h-display .it { font-style: italic; color: var(--taupe-dark); }
.h-display .alt { color: var(--taupe); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}
h2 { font-size: clamp(32px, 4.4vw, 60px); font-weight: 300; }
h2 .it { font-style: italic; color: var(--taupe); }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 400; }
h4 { font-size: 18px; font-weight: 500; }

p { color: var(--ink-soft); }
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 350;
  max-width: 58ch;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn::after {
  content: "→";
  transition: transform .35s ease;
  font-size: 16px;
  line-height: 0;
}
.btn:hover::after { transform: translateX(4px); }

.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--taupe-dark); }
.btn-taupe { background: var(--taupe); color: var(--bone); }
.btn-taupe:hover { background: var(--taupe-dark); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--taupe); color: var(--taupe-dark); background: rgba(151,142,134,0.06); }
.btn-ghost-light { color: var(--bone); border-color: rgba(246,241,236,0.25); background: transparent; }
.btn-ghost-light:hover { border-color: var(--bone); background: rgba(246,241,236,0.08); }
.btn-cream { background: var(--cream); color: var(--ink); border: 1px solid var(--line-soft); }
.btn-cream:hover { background: var(--bone); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap .3s ease, color .3s ease;
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { gap: 14px; color: var(--ink); }

/* ── Stars (5 SVG stars used everywhere) ─────── */
.stars {
  display: inline-flex; gap: 3px;
  color: var(--gold);
}
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.stars.lg svg { width: 20px; height: 20px; }
.stars.sm svg { width: 13px; height: 13px; }

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  background: transparent;
}
.site-header.light,
.site-header.scrolled {
  background: rgba(246, 241, 236, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px var(--gutter);
}
.site-header.dark { color: var(--bone); }
.site-header.dark.scrolled { color: var(--ink); }
.site-header.dark.scrolled .nav-list a { color: var(--ink); }
.site-header.dark.scrolled .btn-cta { background: var(--ink); color: var(--bone); }
.site-header.dark.scrolled .brand-logo { filter: none; }

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: inherit;
  white-space: nowrap;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--taupe);
  color: var(--bone);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}
.site-header.dark .brand-mark { background: var(--bone); color: var(--ink); }
.brand .it { font-style: italic; color: var(--taupe); }
.site-header.dark .brand .it { color: var(--taupe-light); }

.nav { display: flex; align-items: center; gap: 38px; }
.nav-list {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-list > li { position: relative; }
.nav-list a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: inherit;
  padding: 8px 0;
  position: relative;
  transition: color .25s ease;
}
.nav-list a:hover { color: var(--taupe-dark); }
.site-header.dark .nav-list a:hover { color: var(--bone); opacity: 0.75; }

.has-sub { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 16px 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: all .2s ease;
  letter-spacing: 0;
}
.submenu a:hover { background: var(--bone-2); color: var(--ink); }
.has-sub:hover .submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.btn-cta {
  background: var(--ink);
  color: var(--bone);
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .3s ease;
}
.btn-cta:hover { background: var(--taupe-dark); }
.site-header.dark .btn-cta { background: var(--bone); color: var(--ink); }

.hamburger {
  display: none;
  position: relative;
  width: 32px; height: 24px;
}
.hamburger span {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: all .3s ease;
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 4px; }

/* ── HERO (homepage) ───────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  background: var(--bone);
  padding: max(140px, 18vh) var(--gutter) clamp(64px, 8vh, 112px);
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero-text { padding-bottom: 12px; }
.hero-text .eyebrow { margin-bottom: 28px; }
.hero-text h1 { margin-bottom: 28px; }
.hero-text .lead { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-2);
  box-shadow: var(--shadow-card);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-floater {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(246, 241, 236, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}
.hero-floater .l { display: flex; flex-direction: column; gap: 4px; }
.hero-floater .num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.hero-floater .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PAGE HERO (interior pages) — standardized height ──── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  max-height: 620px;
  display: flex; align-items: center;
  background: var(--ink);
  color: var(--bone);
  padding: max(140px, 18vh) var(--gutter) 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.78;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,40,38,0.30) 0%, rgba(45,40,38,0.15) 50%, rgba(45,40,38,0.60) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto;
}
.page-hero h1 {
  color: var(--bone);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 300;
  margin: 22px 0 18px;
  max-width: 18ch;
}
.page-hero .lead {
  color: rgba(246,241,236,0.78);
  max-width: 56ch;
}
.breadcrumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,241,236,0.6);
  display: flex; gap: 12px; align-items: center;
}
.breadcrumbs a:hover { color: var(--bone); }
.breadcrumbs span.sep { opacity: 0.5; }

/* ── SECTIONS ─────────────────────────────── */
.section {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
}
.section.tight { padding: clamp(56px, 8vw, 96px) var(--gutter); }
.section.bone { background: var(--bone); }
.section.cream { background: var(--cream); }
.section.paper { background: var(--paper); }
.section.taupe { background: var(--bone-2); }
.section.dark { background: var(--ink); color: var(--bone); }
.section.dark p { color: rgba(246,241,236,0.72); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--bone); }
.section.dark .eyebrow { color: var(--taupe-light); }
.section.dark .eyebrow::before { background: var(--taupe-light); }

.section-inner { max-width: var(--container); margin: 0 auto; }
.section-inner.narrow { max-width: var(--container-narrow); }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
  max-width: var(--container); margin-left: auto; margin-right: auto;
}
.section-head.center { display: block; text-align: center; max-width: 720px; }
.section-head.center .lead { margin: 24px auto 0; }
.section-head h2 { margin-top: 18px; }
.section-head .right { padding-bottom: 6px; }

/* ── TRUST STRIP ─────────────────────────── */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px var(--gutter);
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-item .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bone-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--taupe-dark);
  flex-shrink: 0;
}
.trust-item .ico svg { width: 18px; height: 18px; }
.trust-item .t { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.trust-item .t strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }

/* ── INTRO BLOCK ─────────────────────────── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.intro-side { padding-top: 12px; position: sticky; top: 120px; }
.intro-text p { font-size: 17px; line-height: 1.7; margin-bottom: 22px; color: var(--ink-soft); }
.intro-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--taupe);
}

/* ── TREATMENT GRID (cards) ──────────────── */
.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
}
.t-card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .45s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 1px 0 var(--line-soft);
  position: relative;
  color: var(--ink);
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.t-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone-2);
}
.t-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.t-card:hover .t-card-img img { transform: scale(1.06); }
.t-card-img .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(246,241,236,0.96);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.t-card-body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.t-card-body h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.t-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.t-card-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.t-card-meta .arrow {
  color: var(--taupe);
  transition: transform .3s ease;
}
.t-card:hover .t-card-meta .arrow { transform: translateX(4px); color: var(--ink); }

/* ── FEATURED ROW (alternating editorial) ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.feature-row + .feature-row { margin-top: clamp(80px, 10vw, 140px); }
.feature-row.reverse .feature-img { order: 2; }
.feature-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bone-2);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body .eyebrow { margin-bottom: 22px; }
.feature-body h2 { margin-bottom: 24px; }
.feature-body p { margin-bottom: 18px; line-height: 1.7; }
.feature-body .actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── REVIEWS ─────────────────────────────── */
.reviews-summary {
  display: flex; align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.reviews-summary .num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--taupe-dark);
  line-height: 1;
}
.reviews-summary .info {
  display: flex; flex-direction: column; gap: 6px;
}
.reviews-summary .info .l {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: all .35s ease;
}
.review-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.review-card .stars { margin-bottom: 18px; }
.review-card p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.review-card .author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.review-card .author .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bone-2);
  color: var(--taupe-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  flex-shrink: 0;
}
.review-card .author .meta {
  display: flex; flex-direction: column; gap: 2px;
}
.review-card .author .meta small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ── BEFORE/AFTER PANEL ──────────────────── */
.ba-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-2);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ba-slider .ba-after {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path .15s ease;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bone);
  pointer-events: none;
}
.ba-handle::after {
  content: "⇄";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.ba-label {
  position: absolute;
  top: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(45,40,38,0.7);
  color: var(--bone);
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

.ba-info h3 { margin-bottom: 16px; }
.ba-info p { margin-bottom: 24px; line-height: 1.7; }

.ba-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  border-bottom: 1px solid var(--line);
}
.ba-tab {
  padding: 14px 22px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .25s ease;
}
.ba-tab:hover { color: var(--ink); }
.ba-tab.active { color: var(--taupe-dark); border-bottom-color: var(--taupe); }
.section.dark .ba-tab { color: rgba(246,241,236,0.6); }
.section.dark .ba-tab:hover { color: var(--bone); }
.section.dark .ba-tab.active { color: var(--bone); border-bottom-color: var(--taupe-light); }

/* ── PROCESS STEPS ───────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
}
.p-step {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  position: relative;
}
.section.dark .p-step { border-top-color: var(--line-dark); }
.p-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 300;
  color: var(--taupe);
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.p-step h3 { font-size: 22px; margin-bottom: 12px; }
.p-step p { font-size: 14px; line-height: 1.6; color: var(--muted); }
.section.dark .p-step p { color: rgba(246,241,236,0.65); }

/* ── DOCTORS / TEAM ──────────────────────── */
.doctors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.doctor {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .35s ease;
}
.doctor:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.doctor .photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone-2);
}
.doctor .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.doctor:hover .photo img { transform: scale(1.05); }
.doctor .body { padding: 26px 28px 30px; }
.doctor h3 { font-size: 24px; margin-bottom: 4px; }
.doctor .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
}
.doctor p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ── EDITORIAL (image + text) ─────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.editorial.reverse .ed-img { order: 2; }
.ed-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bone-2);
}
.ed-img img { width: 100%; height: 100%; object-fit: cover; }
.ed-content .eyebrow { margin-bottom: 22px; }
.ed-content h2 { margin-bottom: 24px; }
.ed-content p { margin-bottom: 18px; line-height: 1.75; }
.ed-stat {
  display: flex; gap: 56px; margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.ed-stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--taupe-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.ed-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── DETAIL PAGES (treatment) ─────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}
.spec-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 32px 30px;
  position: sticky;
  top: 110px;
}
.spec-card h3 { font-size: 22px; margin-bottom: 8px; }
.spec-card .eyebrow { margin-bottom: 22px; }
.spec-card ul {
  list-style: none;
  border-top: 1px solid var(--line-soft);
}
.spec-card li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.spec-card li span { color: var(--muted); }
.spec-card li strong { color: var(--ink); font-weight: 600; }
.spec-card .price-from {
  margin: 24px 0;
  display: flex; align-items: baseline; gap: 10px;
}
.spec-card .price-from small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-card .price-from .v {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.spec-card .btn { width: 100%; justify-content: center; }

.detail-blocks article {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.detail-blocks article:first-of-type { border-top: none; padding-top: 0; }
.detail-blocks article .eyebrow { margin-bottom: 14px; }
.detail-blocks article h3 { font-size: 30px; margin-bottom: 18px; }
.detail-blocks article p { line-height: 1.75; font-size: 16px; }
.detail-blocks article p + p { margin-top: 14px; }

/* ── GALLERY (results page) ───────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}
.g-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-2);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item .caption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(45,40,38,0.78);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.g-item.tall  { grid-column: span 4; aspect-ratio: 3/4; }
.g-item.wide  { grid-column: span 8; aspect-ratio: 16/9; }
.g-item.sq    { grid-column: span 4; aspect-ratio: 1/1; }
.g-item.half  { grid-column: span 6; aspect-ratio: 4/3; }

/* ── CONTACT / FORM ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.c-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.c-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--taupe-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.c-card .ico svg { width: 20px; height: 20px; }
.c-card h3 { font-size: 22px; }
.c-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.c-card a { color: var(--ink); border-bottom: 1px solid var(--taupe); padding-bottom: 1px; }
.c-card a:hover { color: var(--taupe-dark); }

.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 480px;
}
.location-block .info {
  padding: clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.location-block .info h2 { color: var(--bone); margin-bottom: 22px; }
.location-block .info p { color: rgba(246,241,236,0.72); }
.location-block .map { background: var(--bone-2); }
.location-block .map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; filter: grayscale(0.2) saturate(0.85); }

.form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(32px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input, .field textarea, .field select {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--taupe);
  background: var(--paper);
}
.submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.submit-row .note { font-size: 13px; color: var(--muted); max-width: 56%; }

/* ── CTA BLOCK ────────────────────────────── */
.cta-block {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(151,142,134,0.18), transparent 60%),
    radial-gradient(50% 50% at 80% 70%, rgba(138,155,142,0.10), transparent 60%);
  pointer-events: none;
}
.cta-block-inner {
  position: relative; z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.cta-block h2 {
  color: var(--bone);
  margin: 22px 0 26px;
}
.cta-block .lead {
  color: rgba(246,241,236,0.78);
  margin: 0 auto 36px;
}
.cta-block .actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 9vw, 110px) var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { color: var(--bone); margin-bottom: 22px; font-size: 24px; }
.footer-brand .brand-mark { background: var(--bone); color: var(--ink); }
.footer-brand p { color: rgba(246,241,236,0.65); font-size: 14px; line-height: 1.7; max-width: 36ch; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,236,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(246,241,236,0.7);
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  font-size: 14px;
  color: rgba(246,241,236,0.7);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--bone); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(246,241,236,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { color: var(--bone); }

/* ── STICKY CTA + WA BUBBLE ──────────────── */
.wa-bubble {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 12px 40px -10px rgba(37,211,102,0.55);
  transition: transform .3s ease;
}
.wa-bubble:hover { transform: scale(1.06); }
.wa-bubble svg { width: 28px; height: 28px; fill: #fff; }

/* ── REVEAL ANIMATION ────────────────────── */
.reveal { opacity: 1; transform: translateY(0); transition: all .9s cubic-bezier(.2,.8,.2,1); }
.reveal.pre { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── WEBSHOP ──────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: var(--container);
  margin: 0 auto;
}
.shop-card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .35s ease;
}
.shop-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.shop-card .img {
  aspect-ratio: 1/1;
  background: var(--bone-2);
  overflow: hidden;
  position: relative;
}
.shop-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.shop-card:hover .img img { transform: scale(1.05); }
.shop-card .img .tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--bone);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.shop-card .body { padding: 22px 24px 26px; }
.shop-card .brand-line {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 6px;
}
.shop-card h3 { font-size: 20px; margin-bottom: 8px; font-weight: 400; }
.shop-card .desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.shop-card .row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-soft); padding-top: 16px;
}
.shop-card .price { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.shop-card .add { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--taupe-dark); }
.shop-card .add:hover { color: var(--ink); }

.shop-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.shop-filter {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .25s ease;
}
.shop-filter:hover { border-color: var(--taupe); color: var(--taupe-dark); }
.shop-filter.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ── REUSABLE: marquee for trust ──────────── */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  background: var(--bone-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--taupe-dark);
  white-space: nowrap;
}
.marquee-item .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--taupe);
  border-radius: 50%;
  margin: 0 0 4px 56px;
  vertical-align: middle;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; max-height: 480px; }
  .h-display { font-size: clamp(40px, 8vw, 80px); }
  .intro { grid-template-columns: 1fr; }
  .intro-side { position: static; }
}

@media (max-width: 1024px) {
  .nav-list { gap: 22px; }
  .nav-list a { font-size: 12px; }
  .treatments { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; }
  .doctors { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 3; }
  .ba-panel { grid-template-columns: 1fr; gap: 32px; }
  .editorial { grid-template-columns: 1fr; }
  .editorial.reverse .ed-img { order: 0; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-img { order: 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .detail-grid { grid-template-columns: 1fr; }
  .spec-card { position: static; }
  .location-block { grid-template-columns: 1fr; }
  .location-block .map iframe { min-height: 320px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-item.tall, .g-item.wide, .g-item.sq, .g-item.half { grid-column: span 3; aspect-ratio: 4/3; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    position: fixed; inset: 0;
    background: var(--bone);
    flex-direction: column;
    padding: 100px 28px 40px;
    align-items: flex-start;
    z-index: 99;
    color: var(--ink);
  }
  .nav.mobile-open .nav-list { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
  .nav.mobile-open .nav-list li { width: 100%; }
  .nav.mobile-open .nav-list a { font-size: 22px; font-family: var(--serif); color: var(--ink); display: block; padding: 6px 0; }
  .nav.mobile-open .has-sub > a { font-weight: 500; }
  .nav.mobile-open .submenu {
    position: static; display: flex; flex-direction: column;
    background: transparent; border: none; box-shadow: none; padding: 8px 0 12px 16px;
    transform: none; opacity: 1; visibility: visible; min-width: 0;
  }
  .nav.mobile-open .submenu a { font-size: 16px; font-family: var(--sans); color: var(--ink-soft); padding: 6px 0; }
  .hamburger { display: block; z-index: 101; }
  .site-header.dark .hamburger span { background: var(--bone); }
  .site-header.dark.scrolled .hamburger span,
  .site-header.scrolled .hamburger span { background: var(--ink); }
  .nav.mobile-open ~ .hamburger span,
  .hamburger.open span { background: var(--ink) !important; }
  .hamburger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }
  .site-header .btn-cta { display: none; }
  .nav.mobile-open .btn-cta-mobile { display: inline-flex; margin-top: 24px; }
  .treatments { grid-template-columns: 1fr; }
  .doctors { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .submit-row { flex-direction: column; align-items: stretch; }
  .submit-row .note { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .ba-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .ba-tab { white-space: nowrap; }
  .gallery { grid-template-columns: 1fr; }
  .g-item.tall, .g-item.wide, .g-item.sq, .g-item.half { grid-column: auto; aspect-ratio: 4/3; }
  .ed-stat { flex-direction: column; gap: 24px; }
  .reviews-summary { gap: 14px; }
  .reviews-summary .num { font-size: 48px; }
}


/* ============================================
   v3 ADDITIONS — Components for full mirror site
   ============================================ */

/* Brand logo image */
.brand-logo { height: 44px; width: auto; display: block; max-width: 200px; object-fit: contain; }
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .brand-logo { height: 32px; max-width: 140px; }
  .header-inner { padding: 12px var(--gutter); }
  .hamburger { width: 28px; height: 20px; }
}
.site-header.dark .brand-logo { filter: brightness(0) invert(1); }
.site-header.scrolled .brand-logo { filter: none; }

/* Cleaner header layout */
.site-header { padding: 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  max-width: 1480px; margin: 0 auto;
  padding: 16px var(--gutter);
}
.site-header.scrolled .header-inner { padding: 12px var(--gutter); }
.site-header .nav { flex: 1; justify-content: flex-end; }
.site-header .nav-list { gap: 28px; }
.site-header .btn-cta { flex-shrink: 0; }

.header-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: inherit; padding: 8px 14px;
  border-radius: 999px;
  transition: opacity .25s ease;
}
.header-link:hover { opacity: 0.65; }

.nav-list a.active { color: var(--taupe-dark); }
.site-header.dark .nav-list a.active { color: var(--taupe-light); }

/* HERO refinements */
.hero { display: flex; align-items: center; flex-direction: column; justify-content: center; text-align: center; min-height: 92vh; color: var(--bone); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,40,38,0.35) 0%, rgba(45,40,38,0.6) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding: 0 var(--gutter); }
.hero h1 { color: var(--bone); font-size: clamp(44px, 6vw, 88px); font-weight: 300; letter-spacing: -0.02em; margin-bottom: 28px; }
.hero-lead { color: rgba(246,241,236,0.85); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; max-width: 60ch; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

.kliniek-badge { display: inline-flex; align-items: center; padding: 8px 14px; background: rgba(246,241,236,0.12); border-radius: 4px; transition: background .25s; }
.kliniek-badge:hover { background: rgba(246,241,236,0.2); }
.kliniek-badge img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

/* WHY block */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; max-width: var(--container); margin: 0 auto; }
.why-text h2 { margin: 18px 0 32px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-list li { padding-left: 32px; position: relative; font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.why-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 1px; background: var(--taupe); }
.why-img { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r-sm); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }

/* WERKWIJZE */
.werkwijze { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; max-width: var(--container); margin: 0 auto; }
.werkwijze h2 { margin-top: 18px; }
.werkwijze-text p { margin-bottom: 18px; font-size: 17px; line-height: 1.65; }
.werkwijze-text .btn { margin-top: 18px; }

/* QUAD GRID */
.quad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.quad-card { display: block; aspect-ratio: 4/5; position: relative; border-radius: var(--r-sm); overflow: hidden; transition: transform .5s ease; }
.quad-card:hover { transform: translateY(-4px); }
.quad-img { position: absolute; inset: 0; }
.quad-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.quad-card:hover .quad-img img { transform: scale(1.08); }
.quad-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(45,40,38,0.85) 100%); }
.quad-body { position: absolute; left: 24px; right: 24px; bottom: 24px; color: var(--bone); z-index: 2; }
.quad-body h3 { color: var(--bone); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.quad-link { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,241,236,0.85); }
.quad-card.dark .quad-img::after { background: linear-gradient(180deg, transparent 30%, rgba(45,40,38,0.9) 100%); }

/* VALUE GRID */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--container); margin: 60px auto 0; }
.value-grid.light { margin-top: 60px; }
.value-card { padding: 32px 24px; border-top: 1px solid var(--line-dark); }
.value-grid.light .value-card { border-top-color: var(--line); }
.value-card .eyebrow { margin-bottom: 16px; }
.value-card p { font-size: 15px; line-height: 1.55; }
.section.dark .value-card p { color: rgba(246,241,236,0.78); }

/* TREATMENTS — homepage cards */
.treatments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--container); margin: 0 auto; }
.t-card { display: flex; flex-direction: column; background: var(--cream); border-radius: var(--r-sm); overflow: hidden; transition: transform .4s ease, box-shadow .4s ease; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.t-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.t-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.t-card:hover .t-card-img img { transform: scale(1.06); }
.t-badge { position: absolute; top: 14px; left: 14px; background: var(--taupe); color: var(--bone); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; z-index: 2; }
.t-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.t-card-body h3 { font-size: 22px; }
.t-card-body p { font-size: 14px; line-height: 1.55; flex: 1; }
.t-card-link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe-dark); margin-top: 8px; transition: color .25s; }
.t-card:hover .t-card-link { color: var(--ink); }

/* CONSULT BLOCK */
.consult-section { background: var(--bone); padding: clamp(80px, 11vw, 140px) var(--gutter); }
.consult-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(40px, 6vw, 80px); max-width: var(--container); margin: 0 auto; align-items: start; }
.consult-block h2 { margin: 18px 0 24px; }
.consult-block p { font-size: 17px; line-height: 1.65; }
.consult-cards { display: grid; gap: 24px; }
.c-block { background: var(--cream); padding: 36px 32px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.c-block h3 { margin-bottom: 16px; font-size: 24px; }
.c-block p { margin-bottom: 24px; }
.c-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.c-block ul li { padding-left: 22px; position: relative; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.c-block ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 1px; background: var(--taupe); }
.btn-outline { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-outline:hover { border-color: var(--taupe-dark); color: var(--taupe-dark); }

/* CRAITH BLOCK */
.craith-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: center; max-width: var(--container); margin: 0 auto; }
.craith-text h2 { margin: 18px 0 32px; }
.craith-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.craith-list li { padding-left: 22px; position: relative; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.craith-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 1px; background: var(--taupe); }
.craith-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.craith-imgs img { aspect-ratio: 5/6; object-fit: cover; border-radius: var(--r-sm); }

/* REVIEWS GRID */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.reviews-grid.full { grid-template-columns: repeat(3, 1fr); }
.review-card { background: var(--cream); padding: 28px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 16px; }
.section.bone .review-card { background: var(--paper); }
.review-card p { font-size: 15px; line-height: 1.6; flex: 1; }
.author { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid var(--line-soft); }
.author .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--taupe); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; }
.author .meta { font-size: 13px; font-weight: 500; color: var(--ink); }
.reviews-cta { text-align: center; margin-top: 48px; }

/* BEHANDELINGEN MOSAIC */
.treatments-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 16px; max-width: var(--container); margin: 0 auto; }
.mosaic-card { position: relative; overflow: hidden; border-radius: var(--r-sm); display: block; }
.mosaic-card.lg { grid-column: span 2; grid-row: span 2; }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.mosaic-card:hover img { transform: scale(1.08); }
.mosaic-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(45,40,38,0.8) 100%); }
.mosaic-overlay { position: absolute; left: 24px; right: 24px; bottom: 24px; color: var(--bone); display: flex; justify-content: space-between; align-items: end; z-index: 2; }
.mosaic-overlay h3 { color: var(--bone); font-size: 26px; }
.mosaic-overlay span { font-size: 24px; }

/* ALL TREATMENTS INTRO */
.all-treatments-intro { max-width: 880px; margin: 0 auto; text-align: center; }
.all-treatments-intro h2 { margin: 18px 0 32px; }
.all-treatments-intro p { font-size: 17px; line-height: 1.65; margin-bottom: 18px; }

/* BEHANDELING ROWS */
.behandeling-rows { display: flex; flex-direction: column; gap: clamp(60px, 10vw, 120px); max-width: var(--container); margin: 0 auto; }
.beh-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.beh-row.reverse > .beh-img { order: 2; }
.beh-img { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-sm); }
.beh-img img { width: 100%; height: 100%; object-fit: cover; }
.beh-text h3 { font-size: clamp(28px, 3vw, 40px); margin: 18px 0 24px; line-height: 1.15; }
.beh-text p { font-size: 16px; line-height: 1.65; margin-bottom: 28px; }

/* TREATMENT DETAIL */
.treatment-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(40px, 6vw, 80px); max-width: var(--container); margin: 0 auto; align-items: start; }
.td-main h2 { margin: 18px 0 28px; }
.td-main p { font-size: 17px; line-height: 1.65; margin-bottom: 22px; }
.td-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }
.td-card { background: var(--cream); padding: 32px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.td-card h3 { margin: 14px 0 22px; font-size: 22px; }
.td-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.td-card li { padding-left: 22px; position: relative; font-size: 14px; color: var(--ink-soft); }
.td-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--taupe); }
.td-rating { display: flex; align-items: center; gap: 18px; padding: 24px; background: var(--bone); border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.rating-num { font-family: var(--serif); font-size: 56px; font-weight: 400; color: var(--ink); line-height: 1; }
.rating-info { display: flex; flex-direction: column; gap: 6px; }
.rating-info span { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* RESULTS GALLERY */
.results-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--container); margin: 0 auto; }
.result-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-sm); }
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.result-card:hover img { transform: scale(1.06); }
.result-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(45,40,38,0.85) 100%); }
.result-meta { position: absolute; bottom: 20px; left: 20px; right: 20px; color: var(--bone); z-index: 2; }
.result-meta .eyebrow { color: var(--taupe-light); }
.result-meta .eyebrow::before { background: var(--taupe-light); }
.result-meta h3 { color: var(--bone); font-size: 20px; margin-top: 8px; }

/* AWARDS */
.awards-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; max-width: var(--container); margin: 0 auto; }
.awards-text h2 { margin: 18px 0 28px; }
.awards-text p { font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
.awards-img img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }

/* RATING BLOCK */
.rating-block { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto 80px; }
.rating-summary { background: var(--cream); padding: 32px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.big-rating { font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--ink); line-height: 1; }
.kl-logo { height: 32px; width: auto; }
.rating-summary > span:last-child { font-size: 13px; color: var(--muted); }

/* ABOUT */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); max-width: var(--container); margin: 0 auto; }
.about-intro p { font-size: 17px; line-height: 1.7; margin-bottom: 22px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1080px; margin: 0 auto; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-sm); margin-bottom: 24px; background: var(--bone-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 24px; margin-bottom: 6px; }
.team-card .role { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }

/* MISSION */
.mission-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 80px); align-items: start; max-width: var(--container); margin: 0 auto; }
.mission-grid h2 { margin-top: 18px; }
.mission-grid p { font-size: 17px; line-height: 1.65; margin-bottom: 22px; }

/* LAAT */
.laat-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; max-width: var(--container); margin: 0 auto; }
.laat-img { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--r-sm); }
.laat-img img { width: 100%; height: 100%; object-fit: cover; }
.laat-text h2 { margin: 18px 0 28px; }
.laat-text p { font-size: 16px; line-height: 1.65; margin-bottom: 18px; }

/* TESTIMONIAL FEATURE */
.testimonial-feature { text-align: center; max-width: 720px; margin: 0 auto; padding: 40px 0; }
.big-quote { font-family: var(--serif); font-style: italic; font-size: 120px; color: var(--taupe-light); line-height: 0.5; margin-bottom: 24px; }
.testimonial-feature h2 { font-style: italic; margin-bottom: 24px; }
.testimonial-feature .stars { display: inline-flex; margin-bottom: 32px; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.c-card { background: var(--cream); padding: 36px 32px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.c-card .eyebrow { margin-bottom: 18px; }
.c-card h3 { margin-bottom: 14px; font-size: 22px; }
.c-card p { margin-bottom: 18px; font-size: 15px; line-height: 1.55; }
.ft-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-list a { font-size: 14px; color: var(--ink-soft); transition: color .25s; }
.ft-list a:hover { color: var(--taupe-dark); }

/* CONTACT FORM */
.contact-form-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); max-width: var(--container); margin: 0 auto; }
.contact-form-text h2 { margin: 18px 0 24px; }
.contact-form-text p { margin-bottom: 28px; font-size: 16px; line-height: 1.65; }
.contact-form { display: flex; flex-direction: column; gap: 22px; background: var(--paper); padding: 40px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bone); font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--taupe); }
.field textarea { resize: vertical; min-height: 100px; }

.map-section { max-width: var(--container); margin: 0 auto; }

/* FOOTER */
.site-footer { background: var(--ink); color: var(--bone); padding: clamp(60px, 9vw, 100px) var(--gutter) 32px; }
.footer-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; max-width: var(--container); margin: 0 auto 48px; }
.footer-col h4 { color: var(--bone); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 18px; font-family: var(--sans); text-transform: uppercase; }
.footer-col p { color: rgba(246,241,236,0.65); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-col .ft-list a { color: rgba(246,241,236,0.65); font-size: 13px; }
.footer-col .ft-list a:hover { color: var(--bone); }
.ft-badges { display: flex; flex-direction: column; gap: 14px; }
.ft-badge-1 { width: 80px; height: auto; }
.ft-badge-2 { width: 140px; height: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.ft-social { display: flex; gap: 12px; }
.ft-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(246,241,236,0.08); display: inline-flex; align-items: center; justify-content: center; transition: background .25s; }
.ft-social a:hover { background: rgba(246,241,236,0.18); }
.ft-social svg { width: 16px; height: 16px; color: var(--bone); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(246,241,236,0.55); }

/* WHATSAPP BUBBLE */
.wa-bubble { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: white; padding: 14px 18px 14px 14px; border-radius: 999px; box-shadow: 0 12px 32px -8px rgba(37,211,102,0.5); transition: transform .25s; }
.wa-bubble:hover { transform: translateY(-2px); }
.wa-bubble svg { width: 24px; height: 24px; fill: white; }
.wa-label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }

/* CTA BLOCK */
.cta-block { background: var(--ink); padding: clamp(80px, 11vw, 140px) var(--gutter); }
.cta-block-inner { max-width: 720px; margin: 0 auto; text-align: center; color: var(--bone); }
.cta-block-inner h2 { color: var(--bone); margin: 18px 0 24px; }
.cta-block-inner h2 .it { color: var(--taupe-light); }
.cta-block-inner .lead { color: rgba(246,241,236,0.78); margin: 0 auto 36px; }
.cta-block-inner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lead.light { color: rgba(246,241,236,0.78); margin: 24px auto 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav.mobile-open .nav-list { display: flex !important; }
  .hamburger { display: block; }
  .quad-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .why, .werkwijze, .craith-block, .laat-grid, .mission-grid, .awards-section, .about-intro, .consult-grid, .treatment-detail, .contact-form-wrap { grid-template-columns: 1fr; }
  .beh-row { grid-template-columns: 1fr; }
  .beh-row.reverse > .beh-img { order: 0; }
  .treatments-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .mosaic-card.lg { grid-column: span 2; grid-row: span 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .rating-block { grid-template-columns: 1fr; }
  .td-side { position: static; }
  .intro-side { position: static; }
}
@media (max-width: 640px) {
  .quad-grid, .treatments, .reviews-grid, .results-gallery, .footer-inner, .craith-imgs, .value-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 32px; }
  .footer-bottom { padding-top: 24px; }
  .ft-badges { flex-wrap: wrap; }
  .site-footer { padding-left: 22px; padding-right: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .treatments-mosaic { grid-template-columns: 1fr; }
  .wa-label { display: none; }
}


/* ============================================
   WEBSHOP STYLES
   ============================================ */
.shop-hero { min-height: 420px; height: 50vh; }

.shop-banner { background: var(--cream); border-bottom: 1px solid var(--line-soft); padding: 20px var(--gutter); }
.shop-banner-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.banner-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-soft); }
.banner-item .ico { width: 32px; height: 32px; border-radius: 50%; background: var(--bone-2); color: var(--taupe-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.banner-item strong { color: var(--ink); }

.shop-section { padding-top: 60px; }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; max-width: var(--container); margin: 0 auto; }

.shop-sidebar { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 32px; }
.filter-block h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.filter-btn { display: flex; justify-content: space-between; width: 100%; text-align: left; padding: 10px 14px; font-size: 14px; color: var(--ink-soft); border-radius: var(--r-sm); transition: all .25s; background: transparent; border: none; cursor: pointer; }
.filter-btn:hover { background: var(--bone-2); }
.filter-btn.active { background: var(--ink); color: var(--bone); }
.filter-btn .count { opacity: 0.6; font-size: 12px; }
.price-range input[type=range] { width: 100%; accent-color: var(--taupe); }
.price-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.sort-select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); font-family: inherit; font-size: 14px; }
.advice-card { padding: 24px; background: var(--ink); color: var(--bone); border-radius: var(--r-sm); display: flex; flex-direction: column; gap: 12px; }
.advice-card .eyebrow { color: var(--taupe-light); }
.advice-card .eyebrow::before { background: var(--taupe-light); }
.advice-card h4 { color: var(--bone); font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.3; }
.advice-card p { color: rgba(246,241,236,0.7); font-size: 13px; line-height: 1.5; }
.advice-card .btn { margin-top: 8px; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.results-count { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 36px; height: 36px; border: 1px solid var(--line); background: transparent; border-radius: var(--r-sm); cursor: pointer; font-size: 16px; color: var(--muted); }
.view-btn.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.products-grid.list-view .product-img { aspect-ratio: 1/1; }

.product-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-sm); overflow: hidden; transition: all .35s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line); }
.product-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bone-2); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--bone); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; z-index: 2; }
.product-fav { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.92); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ink); cursor: pointer; transition: all .25s; z-index: 2; border: none; }
.product-fav:hover, .product-fav.active { background: var(--ink); color: var(--bone); }
.quick-view { position: absolute; bottom: 12px; left: 12px; right: 12px; padding: 10px; background: rgba(45,40,38,0.92); color: var(--bone); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; border-radius: var(--r-sm); cursor: pointer; opacity: 0; transform: translateY(8px); transition: all .25s; border: none; }
.product-card:hover .quick-view { opacity: 1; transform: translateY(0); }

.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-brand { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); font-weight: 500; }
.product-body h3 { font-size: 18px; font-weight: 400; line-height: 1.2; }
.product-desc { font-size: 13px; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.product-vol { display: block; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.product-price { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.btn-add { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--bone); font-size: 20px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; border: none; }
.btn-add:hover { background: var(--taupe-dark); transform: scale(1.05); }
.btn-add.added { background: var(--sage-deep); transform: scale(1.15); }

.empty-state { text-align: center; padding: 80px 20px; }

/* CART */
.cart-toggle { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); z-index: 89; cursor: pointer; transition: transform .25s; border: none; }
.cart-toggle:hover { transform: translateY(-2px); }
.cart-toggle svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--taupe); color: var(--bone); font-size: 11px; font-weight: 600; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; display: none; align-items: center; justify-content: center; }
.cart-count.visible { display: inline-flex; }
.wa-bubble { bottom: 92px; }

.cart-overlay { position: fixed; inset: 0; background: rgba(45,40,38,0.5); z-index: 98; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.cart-overlay.visible { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100%; background: var(--bone); z-index: 99; transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; box-shadow: -20px 0 60px -20px rgba(45,40,38,0.3); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--line-soft); }
.cart-header h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.cart-count-badge { font-size: 14px; color: var(--taupe); margin-left: 8px; }
.cart-close { width: 36px; height: 36px; border-radius: 50%; background: var(--bone-2); font-size: 22px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background .25s; }
.cart-close:hover { background: var(--ink); color: var(--bone); }

.cart-items { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { margin-bottom: 24px; }

.cart-item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.ci-img { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; background: var(--bone-2); }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-body h4 { font-family: var(--serif); font-size: 16px; font-weight: 400; margin-bottom: 8px; }
.ci-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.qty-ctrl { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-ctrl button { width: 28px; height: 28px; background: transparent; cursor: pointer; border: none; font-size: 14px; }
.qty-ctrl button:hover { background: var(--bone-2); }
.qty-ctrl span { padding: 0 12px; font-size: 13px; }
.ci-price { font-family: var(--serif); font-size: 18px; }
.ci-remove { font-size: 11px; color: var(--muted); text-decoration: underline; padding: 0; background: none; border: none; cursor: pointer; letter-spacing: 0.04em; }
.ci-remove:hover { color: var(--ink); }

.cart-footer { padding: 24px 28px; border-top: 1px solid var(--line-soft); background: var(--cream); display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal, .cart-shipping { display: flex; justify-content: space-between; font-size: 14px; }
.cart-subtotal { font-family: var(--serif); font-size: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.cart-shipping { color: var(--muted); }
.cart-checkout { width: 100%; justify-content: center; margin-top: 8px; }
.cart-footer small { font-size: 11px; color: var(--muted); text-align: center; letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-banner-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .shop-banner-inner { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
}


/* BEFORE/AFTER CARDS */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: var(--container); margin: 0 auto; }
.ba-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-sm); overflow: hidden; transition: all .35s ease; }
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--paper); aspect-ratio: 2/1.2; }
.ba-side { position: relative; overflow: hidden; background: var(--bone-2); }
.ba-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.ba-card:hover .ba-side img { transform: scale(1.04); }
.ba-tag { position: absolute; top: 14px; left: 14px; background: rgba(45,40,38,0.85); color: var(--bone); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; z-index: 2; backdrop-filter: blur(4px); font-weight: 500; }
.ba-after .ba-tag { background: var(--taupe-dark); color: var(--bone); }
.ba-meta { padding: 24px 28px 28px; }
.ba-meta h3 { font-size: 22px; margin-top: 8px; margin-bottom: 8px; }
.ba-meta p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* TRUST BAR */
.trust-bar { background: var(--ink); color: var(--bone); padding: 24px var(--gutter); }
.trust-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; flex-direction: column; gap: 4px; text-align: center; padding: 0 12px; border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: none; }
.trust-item strong { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--bone); letter-spacing: -0.01em; }
.trust-item span { font-size: 12px; letter-spacing: 0.06em; color: rgba(246,241,236,0.65); }
@media (max-width: 768px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { padding: 0 6px; }
  .trust-item strong { font-size: 18px; }
  .trust-item span { font-size: 11px; }
}
@media (max-width: 480px) {
  .trust-bar { padding: 20px 16px; }
  .trust-inner { gap: 14px 10px; }
  .trust-item { padding: 0 4px; }
  .trust-item strong { font-size: 15px; line-height: 1.2; }
  .trust-item span { font-size: 10px; letter-spacing: 0.04em; }
}


.ba-pair.single { display: block; aspect-ratio: auto; background: var(--bone-2); }
.ba-pair.single .ba-fullwidth { display: block; width: 100%; aspect-ratio: 800/1010; position: relative; overflow: hidden; }
.ba-pair.single .ba-fullwidth img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }


/* Landscape 3:2 ratio override for botox page */
.ba-grid.ba-grid-3-2 { grid-template-columns: repeat(3, 1fr); }
.ba-pair.single .ba-fullwidth.ba-landscape { aspect-ratio: 3/2; }
@media (max-width: 900px) { .ba-grid.ba-grid-3-2 { grid-template-columns: 1fr; } }

/* FAQ Accordion */
.faq{max-width:820px;margin:0 auto}
.faq details{border-bottom:1px solid var(--line);padding:0}
.faq details:first-of-type{border-top:1px solid var(--line)}
.faq summary{list-style:none;cursor:pointer;padding:22px 56px 22px 4px;font-family:var(--serif,'Cormorant Garamond',serif);font-size:22px;font-weight:500;color:var(--ink,#2a2522);position:relative;transition:color .2s}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:var(--taupe,#8a6f5a)}
.faq summary::after{content:"";position:absolute;right:8px;top:50%;width:14px;height:14px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:translateY(-70%) rotate(45deg);transition:transform .25s ease}
.faq details[open] summary::after{transform:translateY(-30%) rotate(-135deg)}
.faq details[open] summary{color:var(--taupe,#8a6f5a)}
.faq .faq-body{padding:0 4px 24px 4px;color:var(--muted,#6b6058);line-height:1.7;font-size:16px;max-width:680px}

/* Hide breadcrumbs and eyebrow above H1 in page-hero */
.page-hero .breadcrumbs,
.page-hero .eyebrow{display:none !important}

/* More breathing room between lead text and CTA buttons in interior page hero */
.page-hero .hero-actions{margin-top:32px}
.page-hero .lead{margin-bottom:0}

/* Force WhatsApp bubble to be circular icon-only */
.wa-bubble{width:60px;height:60px;padding:0!important;border-radius:50%!important;justify-content:center;gap:0!important;background:#25D366!important}
.wa-bubble svg{width:32px!important;height:32px!important;fill:#fff!important}
.wa-label{display:none!important}

/* Sticky bottom CTA bar (treatment pages) */
.sticky-cta{position:fixed;left:0;right:0;bottom:-100px;z-index:80;background:#2a2522;color:#f5ede1;padding:14px 20px;display:flex;align-items:center;justify-content:center;gap:14px;box-shadow:0 -8px 24px rgba(0,0,0,.18);transition:bottom .35s ease;font-family:var(--sans,system-ui)}
.sticky-cta.show{bottom:0}
.sticky-cta-text{font-size:15px;letter-spacing:.01em;font-weight:500;margin-right:8px}
.sticky-cta .btn{padding:10px 22px;font-size:14px}
.sticky-cta .btn-cream{background:#f5ede1;color:#2a2522}
.sticky-cta .btn-cream:hover{background:#fff}
.sticky-cta .wa-mini{display:inline-flex;align-items:center;gap:8px;background:#25D366;color:#fff;padding:10px 18px;border-radius:999px;text-decoration:none;font-size:14px;font-weight:500}
.sticky-cta .wa-mini svg{width:18px;height:18px;fill:#fff}
@media(max-width:680px){
  .sticky-cta{padding:10px 14px;gap:8px;flex-wrap:wrap;justify-content:center}
  .sticky-cta-text{display:none}
  .sticky-cta .btn,.sticky-cta .wa-mini{padding:9px 16px;font-size:13px}
}
body.has-sticky-cta{padding-bottom:80px}

/* OPENINGSTIJDEN */
.hours-wrap { max-width: var(--container); margin: 0 auto; }
.hours-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.hours-head p { color: var(--ink-soft); margin-top: 18px; font-size: 16px; line-height: 1.6; }
.hours-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start; }
.hours-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hours-card { background: #fff; padding: 36px 32px; border-radius: var(--r-sm); border: 1px solid var(--line-soft); }
.hours-general { background: var(--ink); color: var(--bone); border-color: var(--ink); padding: 44px 38px; }
.hours-general .eyebrow { color: var(--taupe-light); }
.hours-general h3 { color: var(--bone); }
.hours-card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 12px 0 24px; letter-spacing: -0.01em; }
.hours-list { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hours-list > div { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.hours-list > div:last-child { border-bottom: none; }
.hours-general .hours-list > div { border-bottom-color: rgba(246,241,236,0.12); }
.hours-list dt { font-weight: 500; color: inherit; letter-spacing: 0.02em; }
.hours-list dd { margin: 0; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-general .hours-list dd { color: rgba(246,241,236,0.75); }
@media (max-width: 1024px) {
  .hours-grid { grid-template-columns: 1fr; }
  .hours-people { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hours-people { grid-template-columns: 1fr; }
  .hours-card { padding: 28px 24px; }
  .hours-general { padding: 32px 24px; }
}
