/* ============================================================
   BAS BARBER — Variant 1 · Professional
   Warm-donker, ambachtelijk, klassiek-premium.
   Fonts: Cabinet Grotesk (display) + Supreme (body), Fontshare
   Accent: whiskey-amber, gelockt. Radius: 4px.
   ============================================================ */

:root {
  --ink: #17130f;
  --ink-2: #1f1a14;
  --ink-3: #282218;
  --line: rgba(240, 232, 220, 0.12);
  --line-strong: rgba(240, 232, 220, 0.26);
  --text: #f0e9df;
  --soft: #bbaf9e;
  --muted: #8d8172;
  --accent: #c98f4a;
  --accent-hover: #dba05e;
  --accent-ink: #201409;
  --accent-soft: rgba(201, 143, 74, 0.13);
  --wa: #1faf5a;

  --font-display: "Cabinet Grotesk", "Arial Black", sans-serif;
  --font-body: "Supreme", "Segoe UI", sans-serif;

  --step-hero: clamp(2.6rem, 6.5vw, 5.2rem);
  --step-1: clamp(1.9rem, 4vw, 3rem);
  --step-2: clamp(1.4rem, 2.4vw, 1.9rem);

  --space-section: clamp(4.5rem, 9vw, 8rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h-hero { font-size: var(--step-hero); }
.h-1 { font-size: var(--step-1); }
.h-2 { font-size: var(--step-2); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--soft); max-width: 36em; }
.body-copy { color: var(--soft); max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .body-copy { margin-inline: auto; }
.kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.9rem;
  font-family: var(--font-display);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #17994d; }
.btn-lg { padding: 1.2rem 2rem; font-size: 1.05rem; }
.btn .btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: 1340px;
}
.site-header.is-scrolled {
  background: rgba(23, 19, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--line);
}
.brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.26em; text-transform: uppercase; line-height: 1;
}
.brand i { font-style: normal; color: var(--accent); }
.nav-desktop { display: flex; align-items: center; gap: 1.9rem; }
.nav-desktop a:not(.btn) {
  font-size: 0.96rem; font-weight: 500; color: var(--soft);
  transition: color 0.2s; padding-block: 0.3rem; position: relative;
}
.nav-desktop a:not(.btn):hover,
.nav-desktop a[aria-current="page"] { color: var(--text); }
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out);
}
.nav-desktop a:not(.btn):hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop .btn { padding: 0.7rem 1.25rem; font-size: 0.92rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }
.nav-mobile a:not(.btn) {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 8vw, 2.8rem); line-height: 1.45; color: var(--text);
}
.nav-mobile a[aria-current="page"] { color: var(--accent); }
.nav-mobile .btn { margin-top: 1.8rem; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  min-height: 92dvh; display: grid; align-items: end;
  position: relative; overflow: clip;
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(23, 19, 15, 0.96) 8%, rgba(23, 19, 15, 0.42) 50%, rgba(23, 19, 15, 0.3) 100%),
    linear-gradient(100deg, rgba(23, 19, 15, 0.72) 0%, transparent 60%);
}
.hero-sub {
  margin-top: 1.4rem; max-width: 32em;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--soft);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-meta {
  margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.5rem;
  color: var(--muted); font-size: 0.92rem;
}
.hero-meta strong { color: var(--soft); font-weight: 600; }

/* ---------- behandelingen ---------- */
.treat-list { border-top: 1px solid var(--line); margin-top: clamp(2rem, 4vw, 3rem); }
.treat-row {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: center;
  padding-block: clamp(1.4rem, 2.6vw, 2rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.3s var(--ease-out);
}
.treat-row:hover { background: var(--ink-2); padding-left: 1rem; }
.treat-row h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.treat-row h3 small {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.88rem; color: var(--accent); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 0.35rem;
}
.treat-row p { color: var(--soft); font-size: 0.98rem; max-width: 46ch; }
.treat-row svg { color: var(--muted); transition: transform 0.3s var(--ease-out), color 0.25s; }
.treat-row:hover svg { transform: translateX(6px); color: var(--accent); }

/* ---------- split ---------- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
}
.split img { border-radius: var(--radius); width: 100%; }
.split--flip > *:first-child { order: 2; }

/* ---------- usp band ---------- */
.usp-band { background: var(--ink-2); border-block: 1px solid var(--line); }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.usp h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.usp p { color: var(--soft); font-size: 0.96rem; }
.usp .usp-num {
  font-family: var(--font-display); font-weight: 800; color: var(--accent);
  font-size: 0.95rem; letter-spacing: 0.12em; display: block; margin-bottom: 0.7rem;
}

/* ---------- werk grid (Instagram) ---------- */
.werk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.werk-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4 / 5; background: var(--ink-2);
}
.werk-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.werk-item:hover img { transform: scale(1.045); }
.werk-note { margin-top: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.werk-note a { color: var(--accent); font-weight: 600; }

/* ---------- quote band ---------- */
.quote-band {
  background: var(--ink-2); border-block: 1px solid var(--line);
  text-align: center; padding-block: clamp(4rem, 8vw, 6.5rem);
}
.quote-band blockquote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.3;
  max-width: 22em; margin-inline: auto;
}
.quote-band blockquote::before { content: "\201C"; color: var(--accent); }
.quote-band blockquote::after { content: "\201D"; color: var(--accent); }
.quote-band figcaption { margin-top: 1.4rem; color: var(--muted); font-size: 0.95rem; }
.quote-band figcaption strong { color: var(--soft); }

/* ---------- reviews ---------- */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3rem);
}
.review-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-card p { color: var(--soft); font-size: 0.98rem; flex: 1; }
.review-who { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 0.82rem;
}
.review-who strong { display: block; font-size: 0.94rem; line-height: 1.3; }
.review-who span { font-size: 0.82rem; color: var(--muted); }
.reviews-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.contact-channels { display: grid; gap: 0.9rem; margin-top: 1.8rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.05rem 1.25rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.contact-channel:hover { border-color: var(--accent); transform: translateX(3px); }
.contact-channel svg { flex: none; color: var(--accent); }
.contact-channel.channel-wa svg { color: var(--wa); }
.contact-channel strong { display: block; font-size: 0.98rem; }
.contact-channel span { font-size: 0.87rem; color: var(--muted); }

.form-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label { font-weight: 600; font-size: 0.94rem; }
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--line-strong);
  border-radius: var(--radius); color: var(--text);
  padding: 0.85rem 1rem; font: inherit; width: 100%;
  transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field .field-error { display: none; color: #de7350; font-size: 0.85rem; }
.field.has-error input, .field.has-error select { border-color: #de7350; }
.field.has-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.is-visible { display: block; animation: bb-fade 0.5s var(--ease-out); }
.form-success svg { color: var(--wa); margin-inline: auto; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--soft); max-width: 34ch; margin-inline: auto; }

/* ---------- openingstijden / info ---------- */
.info-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.info-cell { background: var(--ink-2); padding: clamp(1.4rem, 2.6vw, 2rem); }
.info-cell h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.info-cell p { color: var(--soft); font-size: 0.95rem; }

/* ---------- cta final ---------- */
.cta-final {
  text-align: center; position: relative; overflow: clip;
  padding-block: clamp(5rem, 11vw, 9rem);
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 75% at 50% 105%, var(--accent-soft), transparent 70%);
}
.cta-final h2 { font-size: clamp(2rem, 5.5vw, 4rem); }
.cta-final p { margin: 1rem auto 2.2rem; color: var(--soft); max-width: 34em; }
.cta-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 3rem 2rem; background: var(--ink-2); }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem; margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 0.9rem; font-weight: 700;
  font-family: var(--font-display);
}
.footer-grid a, .footer-grid p { display: block; padding-block: 0.26rem; color: var(--soft); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { color: var(--muted); max-width: 30ch; margin-top: 0.9rem; font-size: 0.93rem; }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.84rem;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a { flex: 1; text-align: center; padding: 0.95rem; font-weight: 600; font-size: 0.94rem; background: var(--ink-2); }
.sticky-cta a.primary { background: var(--accent); color: var(--accent-ink); }
.sticky-cta a.wa { background: var(--wa); color: #fff; }

/* ---------- reveal ---------- */
@keyframes bb-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: calc(var(--i, 0) * 80ms);
  }
  .reveal.is-inview { opacity: 1; transform: none; }
  .reveal-img { overflow: hidden; border-radius: var(--radius); }
  .reveal-img img { transform: scale(1.07); transition: transform 1.1s var(--ease-out); }
  .reveal-img.is-inview img { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 1024px) { .nav-mobile { display: none !important; } }

@media (max-width: 900px) {
  .treat-row { grid-template-columns: 1fr auto; }
  .treat-row p { grid-column: 1 / -1; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .usp-grid, .review-grid { grid-template-columns: 1fr; }
  .werk-grid { grid-template-columns: repeat(2, 1fr); }
  .info-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 54px; }
}
@media (max-width: 480px) {
  .hero-ctas .btn, .cta-ctas .btn { width: 100%; justify-content: center; }
  .werk-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}

/* ============================================================
   V2 · Performance-componenten (leadmachine)
   ============================================================ */

/* kinetic hero */
.hero--cinema { min-height: 100dvh; }
.hero-words .word { display: block; overflow: hidden; }
.hero-words .word > span {
  display: inline-block; transform: translateY(110%);
  animation: bb-rise 0.9s var(--ease-out) forwards;
}
.hero-words .word:nth-child(2) > span { animation-delay: 0.12s; }
.hero-words .word:nth-child(3) > span { animation-delay: 0.24s; color: var(--accent); }
@keyframes bb-rise { to { transform: translateY(0); } }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero--cinema .hero-media img {
      animation: bb-parallax linear both;
      animation-timeline: view(block);
      animation-range: exit 0% exit 100%;
      scale: 1.08;
    }
    @keyframes bb-parallax { to { transform: translateY(9%); } }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-words .word > span { transform: none; animation: none; }
}

/* behandeling-router */
.treat-cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin-top: clamp(2rem, 4vw, 3rem); }
.treat-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 2.5vw, 2.2rem); isolation: isolate;
  background: var(--ink-2); min-height: clamp(300px, 40vw, 460px);
}
.treat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(18, 14, 10, 0.94) 10%, rgba(18, 14, 10, 0.25) 55%, rgba(18, 14, 10, 0.05));
}
.treat-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.treat-card:hover img, .treat-card:focus-visible img { transform: scale(1.05); }
.treat-card--wide { grid-column: span 12; min-height: clamp(260px, 30vw, 380px); }
.treat-card--half { grid-column: span 6; }
.treat-tag {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.18em;
  font-size: 0.78rem; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.treat-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 0.3rem; }
.treat-card p { color: var(--soft); font-size: 0.97rem; max-width: 46ch; }
.treat-card .btn { margin-top: 1.1rem; align-self: flex-start; }

/* marquee */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 1rem; user-select: none; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: bb-marquee 28s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee i { font-style: normal; color: var(--accent); }
@keyframes bb-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; } }

/* funnel (boekingsflow) */
.funnel {
  max-width: 720px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--ink-2); padding: clamp(1.6rem, 4vw, 2.8rem);
}
.funnel-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; gap: 1rem; }
.funnel-count { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--muted); }
.funnel-bar { flex: 1; height: 2px; background: var(--line); position: relative; }
.funnel-bar span { position: absolute; inset-block: 0; left: 0; background: var(--accent); transition: width 0.5s var(--ease-out); }
.funnel-step { display: none; }
.funnel-step.is-active { display: block; animation: bb-fade 0.45s var(--ease-out); }
.funnel-step h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin-bottom: 1.3rem; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.option {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.05rem 1.2rem; text-align: left; font-weight: 500; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--soft);
}
.option:hover { border-color: var(--text); color: var(--text); }
.option.is-selected { border-color: var(--accent); background: var(--accent-soft); color: var(--text); }
.funnel-nav { display: flex; justify-content: space-between; margin-top: 1.8rem; gap: 1rem; }
.funnel-back { color: var(--muted); font-weight: 500; }
.funnel-back:hover { color: var(--text); }
.funnel-note { margin-top: 1.3rem; font-size: 0.88rem; color: var(--muted); }
.funnel-done { display: none; text-align: center; padding-block: 2rem; }
.funnel-done h3 { margin-bottom: 0.7rem; }
.funnel-done p { color: var(--soft); max-width: 40ch; margin-inline: auto; }

/* expectation */
.expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-top: clamp(2rem, 4vw, 3rem);
}
.expect { background: var(--ink); padding: clamp(1.4rem, 2.6vw, 2rem); }
.expect .expect-num {
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  color: var(--accent); display: block; margin-bottom: 0.7rem;
}
.expect h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.expect p { color: var(--soft); font-size: 0.93rem; }

/* whatsapp band */
.wa-band {
  border: 1px solid var(--line); border-left: 3px solid var(--wa);
  border-radius: var(--radius); background: var(--ink-2);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  justify-content: space-between;
}
.wa-band h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); margin-bottom: 0.25rem; }
.wa-band p { color: var(--soft); font-size: 0.94rem; }

/* trust microcopy */
.trust-line { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); margin-top: 1.1rem; }
.trust-line svg { color: var(--accent); flex: none; }

@media (max-width: 900px) {
  .treat-card--half { grid-column: span 12; }
  .expect-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .wa-band { flex-direction: column; align-items: flex-start; }
}

/* ---------- boekingssysteem: datum & slots ---------- */
.date-strip {
  display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.6rem;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.date-chip {
  flex: none; min-width: 74px; text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.65rem 0.7rem; cursor: pointer; color: var(--soft);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font: inherit; background: none;
}
.date-chip small { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.date-chip strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1.3; }
.date-chip:hover:not(:disabled) { border-color: var(--text); color: var(--text); }
.date-chip.is-selected { border-color: var(--accent); background: var(--accent-soft); color: var(--text); }
.date-chip:disabled { opacity: 0.35; cursor: not-allowed; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 0.55rem; margin-top: 1.2rem; }
.slot {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0.7rem 0.4rem; text-align: center; font-weight: 600; font-size: 0.95rem;
  color: var(--soft); cursor: pointer; transition: all 0.2s; background: none; font-family: var(--font-body);
}
.slot:hover { border-color: var(--text); color: var(--text); }
.slot.is-selected { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.slot-empty { color: var(--muted); font-size: 0.95rem; padding-block: 1rem; }
.book-summary {
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--radius); background: var(--ink);
  padding: 1rem 1.2rem; margin-bottom: 1.3rem; font-size: 0.97rem; color: var(--soft);
}
.book-summary strong { color: var(--text); }
.deposit-note {
  display: flex; gap: 0.7rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1.1rem; margin-top: 1.1rem; font-size: 0.9rem; color: var(--soft);
  background: var(--accent-soft);
}
.spinner {
  width: 22px; height: 22px; border: 2px solid var(--line-strong); border-top-color: var(--accent);
  border-radius: 50%; animation: bb-spin 0.8s linear infinite; margin-inline: auto;
}
@keyframes bb-spin { to { transform: rotate(360deg); } }
