/* ────────────────────────────────────────────────────────
   Hair & Beautysalon Silvia — Stylesheet
   ──────────────────────────────────────────────────────── */

:root {
  --bg:          #b2a59d;
  --bg-dark:     #6a5750;
  --bg-dark2:    #7a6860;
  --surface:     #cfc6c0;
  --accent:      #9c7a67;
  --accent-2:    #d4cbc5;
  --accent-dim:  rgba(156,122,103,0.22);
  --text:        #2a1e18;
  --text-light:  #eff3f2;
  --muted:       #4a3e38;
  --border:      rgba(80,60,50,0.18);
  --border-d:    rgba(255,255,255,0.12);
  --r:           3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg); /* CSS fallback voor mobiel en no-WebGL */
  line-height: 1.72;
  overflow-x: hidden;
}

h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.08; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, a.btn { font: inherit; cursor: pointer; border: none; }

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ── Page Overlay (transition) ──────────────────────── */

.page-overlay {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
}
.page-overlay.active { opacity: 1; pointer-events: auto; }

/* ── Scroll Progress Bar ────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(156,122,103,0.5);
}

/* ── Section Dots ───────────────────────────────────── */

.section-dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.section-dots.visible { opacity: 1; }

.dot {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  display: block;
}

.dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.dot:hover::after { opacity: 1; }

.dot:hover {
  transform: scale(1.4);
  background: rgba(156,122,103,0.5);
  border-color: var(--accent);
}

.dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(156,122,103,0.5);
}

.section-dots.on-light .dot {
  background: rgba(0,0,0,0.18);
  border-color: rgba(0,0,0,0.25);
}
.section-dots.on-light .dot:hover {
  background: rgba(156,122,103,0.4);
  border-color: var(--accent);
}
.section-dots.on-light .dot.active {
  background: var(--accent);
  border-color: var(--accent);
}
.section-dots.on-light .dot::after { color: var(--text); background: rgba(255,255,255,0.88); }

@media (max-width: 960px) { .section-dots { display: none; } }

/* ── Loader ─────────────────────────────────────────── */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.loader-pre {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  transform: translateY(8px);
  animation: loaderFade 0.6s ease 0.2s forwards;
}

.loader-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  opacity: 0;
  transform: translateY(16px);
  animation: loaderFade 0.8s ease 0.5s forwards;
}

.loader-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  animation: loaderBar 1.6s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

@keyframes loaderFade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar {
  to { width: 100%; }
}

/* ── Custom Cursor ──────────────────────────────────── */

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10001;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 9px; height: 9px;
  background: #fff;
  box-shadow: 0 0 0 1.5px #000, 0 0 5px rgba(0,0,0,0.4);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.55);
  transition: width 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              background 0.3s, border-color 0.3s, opacity 0.3s;
}
.cursor-ring.hovered {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.06);
}

@media (hover: hover) {
  body { cursor: none; }
  body a, body button { cursor: none; }
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Cursor trail ────────────────────────────────────── */
.cursor-trail {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media (hover: none) { .cursor-trail { display: none; } }

/* ── Cursor kleur per sectie ─────────────────────────── */
.cursor-on-light .cursor-ring  { border-color: rgba(60,30,10,0.7); box-shadow: 0 0 0 1px rgba(255,255,255,0.4); }
.cursor-on-light .cursor-dot   { background: #3a1a08; box-shadow: 0 0 0 1.5px rgba(255,255,255,0.8); }
.cursor-on-light .cursor-trail { background: #3a1a08; box-shadow: 0 0 0 1px rgba(255,255,255,0.5); }

/* ── Floating WhatsApp ──────────────────────────────── */

.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.32);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  pointer-events: none;
}
.float-wa.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.float-wa:hover {
  transform: scale(1.1) translateY(0);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

/* ── Scroll Reveal ──────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Clip-path image reveal ─────────────────────────── */

.reveal-wrap { overflow: hidden; }

.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-clip.revealed { clip-path: inset(0 0 0% 0); }

/* ── Split text reveal ──────────────────────────────── */

.reveal-split .split-line { display: block; overflow: hidden; }
.reveal-split .split-line > * { display: block; transform: translateY(110%); transition: transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal-split.revealed .split-line > * { transform: translateY(0); }
.reveal-split.revealed .split-line:nth-child(2) > * { transition-delay: 0.1s; }
.reveal-split.revealed .split-line:nth-child(3) > * { transition-delay: 0.2s; }
.reveal-split.revealed .split-line:nth-child(4) > * { transition-delay: 0.3s; }

/* ── Labels & Utility ───────────────────────────────── */

.label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--r);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn span { position: relative; z-index: 1; }

.btn-primary { background: var(--accent); color: #eff3f2; }
.btn-primary:hover { background: #7d5c4a; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }

.btn-secondary {
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--text);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
}

/* Magnetic effect handled in JS */
.magnetic { will-change: transform; }

/* ── Header ─────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.4s ease, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(178,165,157,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-scrolled .main-navigation a { color: var(--text); opacity: 0.7; }
.header-scrolled .main-navigation a:hover { opacity: 1; color: var(--accent); }
.header-scrolled .main-navigation a.active { color: var(--accent); opacity: 1; }
.header-scrolled .main-navigation a.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  opacity: 1;
}
.header-scrolled .main-navigation a.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.header-scrolled .nav-toggle { border-color: var(--border); color: var(--text); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
}

.brand { display: flex; align-items: center; }

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, opacity 0.2s;
  opacity: 0.92;
}
.brand-logo:hover { opacity: 1; }

.header-scrolled .brand-logo {
  filter: brightness(0);
}

.main-navigation {
  display: flex; gap: 2.25rem; align-items: center;
  position: fixed; top: 0; right: max(1.5rem, calc((100vw - 1180px) / 2));
  height: calc(48px + 2.7rem);
  background: transparent;
  z-index: 95;
}
.main-navigation a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.2s, color 0.4s;
}
.main-navigation a:hover { opacity: 1; color: var(--accent); }
.main-navigation a.active { color: var(--accent); opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  color: white;
  letter-spacing: 0.06em;
  transition: border-color 0.4s, color 0.4s;
}

/* ── Hero (home — video) ─────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 115%;
  object-fit: cover; object-position: center 25%;
  will-change: transform;
}

/* Video hero */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  transform: scale(1.35);
  transform-origin: center top;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.28) 42%,
    rgba(0,0,0,0.55) 68%,
    rgba(0,0,0,0.96) 84%,
    rgba(0,0,0,1)    100%
  );
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 9rem 1.5rem 5rem;
  max-width: 900px;
}

.hero-eyebrow {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-title {
  display: block; margin: 0 0 2rem;
}
.ht-top {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 400; font-style: normal;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s ease 0.65s forwards;
}
.ht-main {
  display: block;
  font-size: clamp(5rem, 15vw, 13rem);
  font-weight: 400; font-style: italic;
  color: white;
  line-height: 0.9;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.85; max-width: 520px; margin: 0 auto 2.75rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.85s forwards;
}

.hero-logo-main {
  display: block;
  width: clamp(160px, 28vw, 300px);
  margin: 0 auto 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s ease 1.35s forwards;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.hero-scroll span {
  display: block; width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  margin: 0 auto;
  animation: scrollLine 2.2s ease infinite;
}

@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Marquee ────────────────────────────────────────── */

.marquee {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0; align-items: center;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 1.6rem;
}
.marquee-track .mx { color: var(--accent); padding: 0 0.4rem; letter-spacing: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── USP Strip ──────────────────────────────────────── */

.usp-strip {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.usp-item:first-child { padding-left: 0; }
.usp-item:last-child  { border-right: none; }
.usp-item strong { color: white; font-size: 0.9375rem; font-weight: 600; }
.usp-item span   { color: rgba(255,255,255,0.38); font-size: 0.8rem; }

/* ── Intro (Over Silvia) ────────────────────────────── */

.intro { padding: 8rem 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 6rem;
  align-items: center;
}

.intro-photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.intro-photo-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: white;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem; border-radius: 2px;
}

.intro-right { display: flex; flex-direction: column; gap: 3rem; }

.intro-text h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 400; margin: 0 0 1.5rem;
}
.intro-text p { color: var(--muted); font-size: 0.9375rem; margin: 0 0 1rem; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.6rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r);
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; margin-bottom: 0.3rem;
}
.stat span { font-size: 0.78rem; color: var(--muted); }

/* ── Counter stat ───────────────────────────────────── */

.count {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

/* ── Diensten Grid (wow-factor) ─────────────────────── */

.diensten-section {
  background: #3d3028;
  padding: 0;
}

.diensten-header {
  padding: 5rem 0 3rem;
  text-align: center;
}
.diensten-header h2 {
  color: white;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
}

.sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #3d3028;
}

.sg-card {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.sg-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sg-card:hover .sg-card-img { transform: scale(1.07); }

.sg-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.08) 100%);
  transition: background 0.5s;
}
.sg-card:hover .sg-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
}

.sg-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
}

.sg-card-num {
  font-size: 0.62rem; letter-spacing: 0.24em; color: var(--accent);
  margin-bottom: 0.5rem; display: block;
}

.sg-card h3 {
  color: white;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-family: 'Playfair Display', serif;
  font-weight: 400; margin-bottom: 0.4rem;
}

.sg-card-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; margin-bottom: 1rem; display: block;
}

.sg-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  transform: translateX(-8px); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}
.sg-card:hover .sg-card-link { transform: translateX(0); opacity: 1; }

.sg-card-wide {
  grid-column: 1 / -1;
  height: 420px;
}
.sg-card-wide .sg-card-img {
  background-position: center 30%;
}
.sg-card-wide .sg-card-content {
  max-width: 540px;
}

/* ── Gallery Teaser (asymmetric) ────────────────────── */

.gallery-teaser {
  padding: 8rem 0;
  background: var(--bg);
}

.gallery-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gallery-teaser-text h2 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400; margin: 0 0 1.25rem;
}
.gallery-teaser-text p {
  color: var(--muted); font-size: 0.9375rem; margin: 0 0 2rem;
}

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 280px 260px;
  gap: 4px;
}

.gallery-teaser-img {
  overflow: hidden; border-radius: 2px;
}
.gallery-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-teaser-img:hover img { transform: scale(1.04); }
.gallery-teaser-img.tall { grid-row: span 2; }

/* ── Photo Gallery (horizontal scroll) ─────────────── */

.gallery { padding: 6rem 0 4rem; overflow: hidden; }

.gallery-header {
  display: flex; flex-direction: column;
  gap: 0.5rem; margin-bottom: 3rem;
}
.gallery-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(calc((100vw - 1180px)/2), 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:active { cursor: grabbing; }

.gallery-item {
  flex: 0 0 420px;
  height: 560px;
  border-radius: var(--r);
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item.tall { flex: 0 0 320px; height: 560px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-hint {
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  text-align: center;
  margin-top: 1.75rem;
  opacity: 0.6;
}

/* ── Feature Treatments ─────────────────────────────── */

.feature-treatment { overflow: hidden; }
.feature-treatment.bg-dark { background: var(--bg-dark); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feature-image { position: relative; overflow: hidden; }
.feature-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feature-image:hover img { transform: scale(1.04); }
.feature-image-badge {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 0.6rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.5rem 0.9rem; border-radius: 2px;
  backdrop-filter: blur(8px);
}

.feature-text {
  padding: 6rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.5rem;
}

.feature-text h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 400; margin: 0;
  color: var(--text);
}
.bg-dark .feature-text h2 { color: white; }

.feature-lead {
  font-size: 1.05rem; line-height: 1.72;
  color: var(--muted); margin: 0;
}
.bg-dark .feature-lead { color: rgba(255,255,255,0.6); }

.feature-text > p:not(.feature-lead) {
  font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.75;
}
.bg-dark .feature-text > p:not(.feature-lead) { color: rgba(255,255,255,0.4); }

.feature-prices {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.bg-dark .feature-prices { border-color: var(--border-d); }

.price-row-feat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.price-row-feat:last-child { border-bottom: none; }
.bg-dark .price-row-feat { border-color: rgba(255,255,255,0.06); }
.price-row-feat span { color: var(--muted); }
.bg-dark .price-row-feat span { color: rgba(255,255,255,0.5); }
.price-row-feat strong { color: var(--text); font-weight: 600; }
.bg-dark .price-row-feat strong { color: white; }

/* ── Quote Section ──────────────────────────────────── */

.quote-section {
  background: var(--bg-dark);
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 22rem; font-style: italic;
  color: rgba(255,255,255,0.025);
  line-height: 1; pointer-events: none;
  user-select: none;
}

.quote-inner { position: relative; z-index: 1; }
.quote-inner .label { color: var(--accent); }

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400; font-style: italic;
  color: white; line-height: 1.2;
  margin: 0; padding: 0;
}

/* ── Reviews ────────────────────────────────────────── */

.reviews {
  padding: 8rem 0;
  background: var(--bg-dark2);
}

.reviews-head {
  margin-bottom: 4rem;
}
.reviews-head h2 {
  color: white;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(156,122,103,0.35); }

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

blockquote.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.68;
  margin: 0; padding: 0;
  flex: 1;
}

.review-author {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-style: normal;
}

.reviews-note {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

/* ── Services / Behandelingen grid ─────────────────── */

.services {
  padding: 8rem 0;
  background: var(--bg-dark);
}
.section-head { margin-bottom: 4rem; }
.section-head h2 {
  color: white;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400; margin: 0.75rem 0 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #242424;
  border: 1px solid #242424;
  border-radius: var(--r);
  overflow: hidden;
}
.treatment-cat {
  background: var(--bg-dark);
  padding: 3.5rem;
  display: flex; flex-direction: column; gap: 2.5rem;
  transition: background 0.3s;
}
.treatment-cat:hover { background: #141414; }
.cat-top { display: flex; flex-direction: column; }

.card-num {
  font-size: 0.62rem; letter-spacing: 0.24em;
  color: var(--accent); margin-bottom: 1rem;
}
.treatment-cat h3 {
  color: white; font-size: 1.3rem;
  font-weight: 400; margin-bottom: 0.6rem;
}
.cat-top > p { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.6; }

.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: rgba(255,255,255,0.6); }
.price-row span:last-child  { color: var(--accent); font-weight: 500; white-space: nowrap; padding-left: 1rem; }
/* ── Nav dropdown ───────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dd-arrow { display: inline-block; font-style: normal; transition: transform 0.25s; margin-left: 0.2rem; }
.nav-dropdown-parent { display: inline-flex; align-items: center; gap: 0.2rem; }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: #1a1410; border: 1px solid rgba(201,169,110,0.15);
  min-width: 200px; padding: 0.4rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.22s, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -0.5rem; left: 0; right: 0; height: 0.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.nav-dropdown:hover .nav-dd-arrow,
.nav-dropdown.open .nav-dd-arrow { transform: rotate(90deg); }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1.1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--accent); background: rgba(201,169,110,0.1); }

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-parent {
    width: 100%; justify-content: space-between;
    font-size: 1.5rem; opacity: 0.8; color: white;
    padding: 0; background: none; border: none; cursor: pointer;
    font-family: 'Playfair Display', serif; font-weight: 400;
    text-decoration: none; display: flex; align-items: center;
  }
  .nav-dropdown-menu {
    position: static !important;
    background: none !important; border: none !important;
    padding: 0 !important; margin: 0;
    max-height: 0; overflow: hidden;
    opacity: 1 !important; visibility: visible !important;
    pointer-events: all !important; transform: none !important;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 280px; }
  .nav-dropdown-menu a {
    font-size: 1.1rem; padding: 0.4rem 0 0.4rem 1rem;
    color: rgba(255,255,255,0.8); border-bottom: none;
    background: none !important;
  }
  .main-navigation .nav-dropdown {
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .main-navigation.show .nav-dropdown {
    opacity: 1; transform: translateX(0);
    transition-delay: 0.12s;
  }
}

.price-subhead { border-bottom: none; margin-top: 0.75rem; }
.price-subhead span { font-size: 0.68rem !important; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(201,169,110,0.6) !important; font-weight: 600; }
.hf-checks { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.25rem 0 1.5rem; }
.hf-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.hf-check-icon { color: var(--accent); font-weight: 600; flex-shrink: 0; }

.facial-hint { font-size: 0.62rem !important; color: rgba(255,255,255,0.2) !important; font-style: italic; letter-spacing: 0 !important; text-transform: none !important; font-weight: 400 !important; }

.price-expandable { cursor: pointer; user-select: none; }
.price-expandable:hover span:first-child { color: rgba(255,255,255,0.9); }
.expand-chevron { display: inline-block; margin-left: 0.35rem; transition: transform 0.25s; color: var(--accent); font-style: normal; }
.price-expandable[aria-expanded="true"] .expand-chevron { transform: rotate(90deg); }

.facial-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.facial-detail.open { grid-template-rows: 1fr; }
.facial-detail > ul { overflow: hidden; }
.facial-steps { list-style: none; margin: 0; padding: 0; }
.facial-steps li {
  font-size: 0.8125rem; color: rgba(255,255,255,0.38);
  padding: 0.3rem 0 0.3rem 1.1rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.facial-steps li:first-child { padding-top: 0.6rem; }
.facial-steps li:last-child { padding-bottom: 0.9rem; border-bottom: none; }
.facial-steps li::before { content: '–'; position: absolute; left: 0; color: var(--accent); opacity: 0.5; }

/* ── Salon Visual ───────────────────────────────────── */

.salon-visual { overflow: hidden; }
.salon-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.salon-visual-img { overflow: hidden; }
.salon-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.salon-visual-text {
  padding: 6rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.5rem;
  background: var(--surface);
}
.salon-visual-text h2 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400; margin: 0;
}
.salon-visual-text > p { color: var(--muted); font-size: 0.9375rem; }

.feature-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.feature-list li {
  position: relative; padding-left: 1.4rem;
  font-size: 0.9rem; color: var(--text);
}
.feature-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65em;
  width: 8px; height: 1px; background: var(--accent);
}

/* ── Voucher (dark CTA) ─────────────────────────────── */

.voucher { padding: 7rem 0; background: var(--bg-dark); }
.voucher-inner { max-width: 640px; }
.voucher-inner h2 {
  color: white; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}
.voucher-inner p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin: 0 0 1rem; }

/* ── Contact teaser strip ───────────────────────────── */

.contact-teaser {
  padding: 5rem 0;
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-teaser-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-teaser-info {
  display: flex; gap: 3rem; flex-wrap: wrap;
}

.ct-item { display: flex; flex-direction: column; gap: 0.3rem; }
.ct-item strong {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.ct-item span, .ct-item a {
  color: rgba(255,255,255,0.75); font-size: 0.9375rem;
}
.ct-item a:hover { color: var(--accent); }

/* ── Contact page ───────────────────────────────────── */

.appointment { padding: 8rem 0; }
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: start;
}

.appointment-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 1.25rem;
}
.appointment-text > p { color: var(--muted); font-size: 0.9375rem; margin: 0 0 2.25rem; }

.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r);
}
.contact-card strong {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.9rem; font-weight: 600;
}
.contact-card p { margin: 0; line-height: 1.65; font-size: 0.9375rem; overflow-wrap: break-word; word-break: break-word; }
.contact-card a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,0,0,0.18);
}
.contact-card a:hover { text-decoration-color: var(--accent); color: var(--accent); }

.hours-card { grid-column: span 2; }
.hours { display: flex; flex-direction: column; }
.hour-row {
  display: flex; justify-content: space-between;
  padding: 0.55rem 0; font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.hour-row:last-child { border-bottom: none; }
.hour-row .closed { color: var(--muted); }

/* ── Google Maps ────────────────────────────────────── */

.map-card { padding: 1.75rem; grid-column: span 2; }
.map-wrap {
  margin-top: 1rem;
  height: 220px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── FAQ ────────────────────────────────────────────── */

.faq-section {
  padding: 8rem 0;
  background: var(--bg);
}

.faq-head {
  margin-bottom: 3.5rem;
}
.faq-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 0;
}

.faq-list {
  max-width: 780px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0;
  background: none; border: none;
  font-size: 1rem; font-weight: 500;
  color: var(--text);
  text-align: left; cursor: pointer;
  gap: 1.5rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text);
  border-radius: 1px;
  transition: background 0.2s, transform 0.35s;
}
.faq-icon::before { width: 10px; height: 1px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 10px; transform: translate(-50%,-50%); }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-q[aria-expanded="true"] .faq-icon::before,
.faq-q[aria-expanded="true"] .faq-icon::after { background: var(--bg-dark); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--muted); font-size: 0.9375rem; line-height: 1.75;
  transition: padding-bottom 0.4s;
}
.faq-a.open > p { padding-bottom: 1.5rem; }
.faq-a > p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── Page Hero (sub-pages) ──────────────────────────── */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.8s ease;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 0%, rgba(15,15,15,0.5) 60%, rgba(15,15,15,0.3) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding-top: 7rem;
}

.page-hero-eyebrow {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400; font-style: italic;
  color: white; line-height: 1;
  margin: 0 0 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}

.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.7;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.65s forwards;
}

/* ── Behandelingen page ─────────────────────────────── */

.behandelingen-section {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.behandelingen-intro {
  max-width: 640px;
  margin-bottom: 5rem;
}

.behandelingen-intro h2 {
  color: white;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 1rem;
}

.behandelingen-intro p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem;
}

/* Supplementen sectie */
.supplement-section {
  padding: 6rem 0;
  background: var(--bg-dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.supplement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 3rem;
}

.supplement-cat {
  background: var(--bg-dark2);
  padding: 3rem;
}

.supplement-cat h3 {
  color: white; font-size: 1.1rem;
  font-weight: 400; margin-bottom: 1.5rem;
}

.waxen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #242424;
  border: 1px solid #242424;
  border-radius: var(--r);
  overflow: hidden;
}

.behandelingen-cta {
  padding: 6rem 0;
  background: var(--bg-dark);
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.behandelingen-cta h2 {
  color: white;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}

.behandelingen-cta p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem; max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ── Hydrafacial page ───────────────────────────────── */

.hf-intro {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.hf-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hf-intro-img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hf-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hf-intro-text { color: rgba(255,255,255,0.6); }
.hf-intro-text h2 {
  color: white;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}

.hf-steps {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.hf-step {
  display: flex; gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  background: rgba(255,255,255,0.02);
}

.hf-step-num {
  font-size: 0.62rem; letter-spacing: 0.2em;
  color: var(--accent); flex-shrink: 0;
  padding-top: 0.2rem;
}

.hf-step-content h4 {
  color: white; font-size: 0.95rem;
  font-weight: 600; margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
}
.hf-step-content p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem; margin: 0;
}

/* ── Before / After slider ───────────────────────────── */
.ba-section {
  padding: 7rem 0;
  background: #0a0a0a;
}
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 3.5rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  user-select: none;
  touch-action: none;
}
.ba-side {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ba-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-before-side { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-after-side  { z-index: 1; }
.ba-before-side img { filter: grayscale(100%) brightness(0.75) contrast(1.1); }
.ba-label {
  position: absolute;
  bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
}
.ba-before-side .ba-label { left: 1.25rem; }
.ba-after-label { position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 1;
  padding: 0.35rem 0.9rem; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: white; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.9);
}
.ba-handle-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  color: #3d3028;
  flex-shrink: 0;
}
.ba-range {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
}

.hf-prices {
  padding: 7rem 0;
  background: var(--bg-dark2);
  border-top: 1px solid #1e1e1e;
}

.hf-prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.hf-price-card {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  background: var(--bg-dark);
  display: flex; flex-direction: column; gap: 0.75rem;
}

.hf-price-card.featured {
  border-color: var(--accent);
  background: rgba(156,122,103,0.05);
}

.hf-price-name {
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

.hf-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400;
  color: white;
}

.hf-price-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.6; flex: 1;
}

.hf-suitability {
  padding: 7rem 0;
  background: var(--bg-dark);
}

.hf-suitability-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}

.hf-suitability h2 {
  color: white;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 0;
}

.hf-tags {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.hf-tag {
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, color 0.2s;
}
.hf-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Pressotherapie page ────────────────────────────── */

.press-intro {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.press-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.press-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.press-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.press-intro-text { color: rgba(255,255,255,0.6); }
.press-intro-text h2 {
  color: white;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}

.press-benefits {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.press-benefit {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  background: rgba(255,255,255,0.02);
}

.press-benefit strong {
  display: block;
  color: var(--accent);
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.press-benefit p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem; margin: 0;
}

.press-prices {
  padding: 7rem 0;
  background: var(--bg-dark2);
  border-top: 1px solid #1e1e1e;
}

.press-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #242424;
  border: 1px solid #242424;
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 3rem;
}

.press-price-card {
  background: var(--bg-dark2);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: background 0.3s;
}
.press-price-card:hover { background: #1a1a1a; }

.press-price-label {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}

.press-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400;
  color: white; line-height: 1;
}

.press-price-note {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ── Pressotherapie nieuwe secties ─────────────────── */

.press-herkenbaar {
  padding: 7rem 0;
  background: var(--bg);
}
.press-herkenbaar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.press-herkenbaar h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400; color: white;
  margin: 0.75rem 0 1.5rem;
}
.press-problem-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.press-problem-list li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.press-problem-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent); opacity: 0.7;
}
.press-vision-card {
  background: rgba(18, 13, 9, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(6px);
}
.press-vision-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.press-vision-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.press-results {
  padding: 7rem 0;
  background: var(--bg-dark2);
}
.press-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  max-width: 820px;
  margin: 0 auto;
}
.press-result-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.press-result-check {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.press-systems {
  padding: 7rem 0;
  background: var(--bg);
}
.press-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.press-system-card {
  background: rgba(18, 13, 9, 0.82);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(6px);
}
.press-system-card:hover {
  background: rgba(18, 13, 9, 0.92);
  border-color: rgba(201,169,110,0.3);
}
.press-system-num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.press-system-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.75rem;
}
.press-system-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.press-unique {
  padding: 5rem 0;
  background: var(--bg-dark2);
  border-top: 1px solid #1e1e1e;
}
.press-unique-inner {
  max-width: 680px;
}
.press-unique h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,2.5vw,2.4rem);
  font-weight: 400; color: white;
  margin: 0.75rem 0 1.25rem;
}
.press-unique p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.press-kuur {
  padding: 7rem 0;
  background: var(--bg);
}
.press-kuur-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.press-kuur-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,2.5vw,2.4rem);
  font-weight: 400; color: white;
  margin: 0.75rem 0 1.25rem;
}
.press-kuur-text p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.press-kuur-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.press-kuur-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.press-kuur-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.press-kuur-step strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.press-kuur-step p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.press-contra {
  padding: 5rem 0;
  background: var(--bg-dark2);
}
.press-contra-box {
  max-width: 680px;
  border: 1px solid rgba(201,169,110,0.2);
  border-left: 3px solid var(--accent);
  border-radius: 0.5rem;
  padding: 2.5rem;
  background: rgba(201,169,110,0.04);
}
.press-contra-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.75rem;
}
.press-contra-box p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.press-contra-box ul {
  padding-left: 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.press-contra-box li {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .press-herkenbaar-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .press-systems-grid { grid-template-columns: 1fr 1fr; }
  .press-kuur-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .press-results-grid { grid-template-columns: 1fr; }
  .press-systems-grid { grid-template-columns: 1fr; }
}

/* ── Shared CTA section ─────────────────────────────── */

.page-cta {
  padding: 7rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.page-cta h2 {
  color: white;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}

.page-cta p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem; max-width: 480px;
  margin: 0 auto 2.5rem;
}

.page-cta-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ── Arrangements ───────────────────────────────────── */

.arrangements {
  padding: 7rem 0;
  background: var(--bg-dark2);
}
.arrangements-inner { max-width: 640px; }
.arrangements-inner h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; margin: 0.75rem 0 1.5rem;
}
.arrangements-inner p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin: 0 0 1rem; }

/* ── Brands ─────────────────────────────────────────── */

.brands {
  padding: 3.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  font-size: 0.62rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.5rem;
}
.brands-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.brand-tag {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text); letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}
.brand-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── Footer ─────────────────────────────────────────── */

.site-footer {
  background: var(--bg-dark);
  padding: 3rem 0;
  border-top: 1px solid #1e1e1e;
}
.footer-grid {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.social-links { display: flex; gap: 2rem; }
.social-links a {
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--accent); }

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-medewerkers {
  margin-top: 0.75rem;
  text-align: right;
}
.footer-medewerkers a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-medewerkers a:hover { color: rgba(255,255,255,0.4); }

/* ── 3D Tilt ────────────────────────────────────────── */

.tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease-out, box-shadow 0.3s;
  will-change: transform;
}

.tilt:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1080px) {
  .feature-text      { padding: 4rem; }
  .salon-visual-text { padding: 4rem; }
  .hf-intro-grid     { gap: 3.5rem; }
  .press-intro-grid  { gap: 3.5rem; }
  .hf-prices-grid    { grid-template-columns: 1fr 1fr; }
  .press-price-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .map-card     { grid-column: span 1; }

  .intro-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .intro-photo       { aspect-ratio: 16/9; }
  .intro-stats       { grid-template-columns: repeat(3, 1fr); }

  .feature-grid,
  .feature-grid.reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .feature-image     { min-height: 400px; }
  .feature-text      { padding: 3.5rem 0; }
  .bg-dark .feature-text { padding: 3.5rem 2rem; }

  .salon-visual-grid { grid-template-columns: 1fr; }
  .salon-visual-img  { min-height: 400px; max-height: 520px; }
  .salon-visual-text { padding: 3.5rem 1.5rem; }

  .treatment-grid    { grid-template-columns: 1fr; }

  .appointment-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hours-card        { grid-column: span 1; }

  .quote-section     { padding: 7rem 2rem; }

  .usp-grid          { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .usp-item          { border-right: none; padding: 0.5rem 0; }

  .gallery-item      { flex: 0 0 320px; height: 440px; }
  .gallery-item.tall { flex: 0 0 260px; }

  .sg-grid           { grid-template-columns: 1fr; }
  .sg-card           { height: 440px; }

  .gallery-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-teaser-grid  { grid-template-rows: 220px 200px; }

  .hf-intro-grid     { grid-template-columns: 1fr; }
  .hf-intro-img      { aspect-ratio: 16/9; }
  .hf-prices-grid    { grid-template-columns: 1fr; }
  .hf-suitability-grid { grid-template-columns: 1fr; gap: 3rem; }

  .press-intro-grid  { grid-template-columns: 1fr; }
  .press-img-wrap    { aspect-ratio: 16/9; }
  .press-price-grid  { grid-template-columns: 1fr 1fr; }

  .contact-teaser-inner { flex-direction: column; align-items: flex-start; }

  .supplement-grid   { grid-template-columns: 1fr; }
  .waxen-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .brand-logo { height: 38px; }

  .main-navigation {
    display: flex;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    height: 100%; width: 100%;
    background: var(--bg-dark); z-index: 9980;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .main-navigation.show  {
    transform: translateX(0);
    pointer-events: auto;
  }
  .main-navigation a     { font-size: 1.5rem; opacity: 0.8; color: white; }
  .main-navigation a.btn-nav { font-size: 1rem; }
  .site-header           { z-index: 9990; }
  .nav-toggle            { display: inline-flex; position: relative; }

  .hero-content { padding: 7rem 1.5rem 4rem; }
  .ht-main      { font-size: clamp(3.5rem, 17vw, 6.5rem); }
  .hero-sub     { font-size: 0.95rem; }

  .reviews      { padding: 5rem 0; }
  .faq-section  { padding: 5rem 0; }
  .intro        { padding: 5rem 0; }
  .gallery      { padding: 4rem 0 2.5rem; }
  .services     { padding: 5rem 0; }
  .arrangements { padding: 4.5rem 0; }
  .voucher      { padding: 4.5rem 0; }
  .appointment  { padding: 5rem 0; }
  .quote-section { padding: 6rem 1.5rem; }
  .section-head  { margin-bottom: 2.5rem; }
  .gallery-teaser { padding: 5rem 0; }
  .diensten-header { padding: 3rem 0 2rem; }

  .feature-image     { min-height: 280px; }
  .feature-text      { padding: 2.5rem 0; }
  .bg-dark .feature-text { padding: 2.5rem 1.5rem; }

  .salon-visual-text { padding: 2.5rem 1.5rem; }

  .treatment-cat { padding: 2rem; gap: 2rem; }

  .usp-grid  { grid-template-columns: 1fr; gap: 0; }
  .usp-item  { padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .usp-item:last-child { border-bottom: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .hours-card   { grid-column: span 1; }
  .intro-stats  { grid-template-columns: 1fr; }
  .stat         { padding: 1.25rem; }

  .gallery-item      { flex: 0 0 76vw; height: 300px; }
  .gallery-item.tall { flex: 0 0 60vw; height: 300px; }

  blockquote { font-size: clamp(1.6rem, 7vw, 2.6rem); }

  .hf-prices-grid    { grid-template-columns: 1fr; }
  .press-price-grid  { grid-template-columns: 1fr; }
  .press-benefits    { grid-template-columns: 1fr; }
  .waxen-grid        { grid-template-columns: 1fr; }
  .contact-teaser-info { gap: 1.5rem; flex-direction: column; }

  .page-hero { min-height: 45vh; }
  .page-hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
}

@media (max-width: 440px) {
  .hero-actions, .contact-actions, .page-cta-actions { flex-direction: column; }
  .btn { text-align: center; width: 100%; }

  .feature-image         { min-height: 240px; }
  .feature-text          { padding: 2rem 0; }
  .bg-dark .feature-text { padding: 2rem; }
  .salon-visual-text     { padding: 2rem; }
  .treatment-cat         { padding: 1.5rem; gap: 1.5rem; }
  .price-row span:first-child { font-size: 0.82rem; }
  .header-inner          { padding: 1rem 0; }
  .brand-logo            { height: 34px; }
}

/* ── Kasboek ────────────────────────────────────────── */

/* Login page */
.login-page-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(42,30,24,0.18);
}

.login-logo {
  display: block;
  height: 48px;
  margin: 0 auto 2rem;
}

.login-card h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.login-card .login-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* Shared form field */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font: inherit;
  padding: 0.7rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-field input[readonly] {
  opacity: 0.65;
  cursor: default;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-error {
  color: #c0392b;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.22);
  border-radius: var(--r);
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

.form-error.visible { display: block; }

.form-success {
  color: #1a7a3c;
  background: rgba(26,122,60,0.08);
  border: 1px solid rgba(26,122,60,0.22);
  border-radius: var(--r);
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

.form-success.visible { display: block; }

/* Kasboek app bar */
.kasboek-appbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-d);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kasboek-appbar-logo {
  height: 36px;
  display: block;
}

.kasboek-appbar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.kasboek-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent-2);
  border: 1px solid var(--accent);
}

.kasboek-badge.admin {
  background: rgba(156,122,103,0.35);
  border-color: var(--accent-2);
  color: var(--text-light);
}

/* Tabs */
.kasboek-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-d);
  background: var(--bg-dark2);
  padding: 0 1.5rem;
  overflow-x: auto;
}

.kasboek-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--accent-2);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.25rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.kasboek-tab-btn:hover { color: var(--text-light); }
.kasboek-tab-btn.active {
  color: var(--text-light);
  border-bottom-color: var(--accent-2);
}

/* Tab content */
.kasboek-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.kasboek-tab-content { display: none; }
.kasboek-tab-content.active { display: block; }

/* Form card */
.kasboek-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  max-width: 680px;
}

.kasboek-form-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Table */
.kasboek-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.kasboek-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.kasboek-table th {
  text-align: left;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border-d);
  white-space: nowrap;
}

.kasboek-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border-d);
  color: var(--text-light);
  vertical-align: top;
}

.kasboek-table tr:last-child td { border-bottom: none; }
.kasboek-table tr:hover td { background: rgba(255,255,255,0.04); }

.kasboek-table .td-muted { color: var(--accent-2); font-size: 0.8rem; }
.kasboek-table .td-price { font-family: 'Playfair Display', serif; font-size: 1rem; }

/* Stat cards */
.kasboek-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.kasboek-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
}

.kasboek-stat-card .stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.kasboek-stat-card .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
}

/* Filters */
.kasboek-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.kasboek-filters .form-field {
  margin-bottom: 0;
  min-width: 140px;
}

.kasboek-filters .form-field label { margin-bottom: 0.3rem; }

/* Period selector */
.period-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.period-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  transition: all 0.2s;
}

.period-btn:hover { border-color: var(--accent); color: var(--text); }
.period-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-light);
}

/* Delete button */
.delete-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem 0.4rem;
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.delete-btn:hover {
  color: #c0392b;
  background: rgba(192,57,43,0.1);
}

/* Toast */
.kasboek-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.kasboek-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.kasboek-toast.success { border-color: rgba(26,122,60,0.5); }
.kasboek-toast.error   { border-color: rgba(192,57,43,0.5); }

/* Loading overlay */
.kasboek-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg);
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* Empty state */
.kasboek-empty {
  text-align: center;
  color: var(--accent-2);
  padding: 3rem 1rem;
  font-size: 0.875rem;
}

/* Section heading */
.kasboek-section-head {
  margin-bottom: 1.5rem;
}

.kasboek-section-head h2 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.kasboek-section-head p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Breakdown table (smaller, in totalen tab) */
.kasboek-breakdown {
  margin-top: 2rem;
}

.kasboek-breakdown h3 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Print section */
#print-header {
  display: none;
}

/* Confirm dialog */
.kasboek-confirm {
  position: fixed;
  inset: 0;
  background: rgba(42,30,24,0.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.kasboek-confirm-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.kasboek-confirm-box p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.kasboek-confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Kasboek responsive */
@media (max-width: 640px) {
  /* iOS: input font ≥16px voorkomt automatisch inzoomen */
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }

  /* Formulier */
  .form-row { grid-template-columns: 1fr; }
  .kasboek-filters { flex-direction: column; }
  .kasboek-filters .form-field { min-width: 0; width: 100%; }
  .kasboek-form-card { padding: 1.25rem 1rem; max-width: 100%; }

  /* App bar: kleiner, naam verborgen */
  .kasboek-appbar { padding: 0.5rem 1rem; gap: 0.5rem; }
  .kasboek-appbar-logo { height: 28px; }
  .kasboek-appbar-user { gap: 0.5rem; font-size: 0.8rem; }
  #appbarName { display: none; }

  /* Tabs */
  .kasboek-tabs { padding: 0 0.25rem; }
  .kasboek-tab-btn { padding: 0.75rem 0.85rem; font-size: 0.7rem; letter-spacing: 0.08em; }

  /* Inhoud */
  .kasboek-wrap { padding: 1rem 0.75rem 3rem; }
  .kasboek-section-head { margin-bottom: 1rem; }
  .kasboek-section-head h2 { font-size: 1.05rem; }

  /* Stat-cards */
  .kasboek-stat-card { padding: 0.9rem 1rem; }
  .kasboek-stat-card .stat-value { font-size: 1.3rem; }

  /* Periode-knoppen */
  .period-btns { gap: 0.3rem; }
  .period-btn { padding: 0.4rem 0.65rem; font-size: 0.7rem; }

  /* ── Tabel → kaartjes layout ─────────────────────────── */
  .kasboek-table-wrap { overflow-x: visible; margin-top: 1rem; }
  .kasboek-table thead { display: none; }
  .kasboek-table,
  .kasboek-table tbody { display: block; }

  .kasboek-table tr {
    display: block;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 0.75rem;
    padding: 0.85rem 2.5rem 0.85rem 0.9rem; /* rechts ruimte voor verwijderknop */
  }

  .kasboek-table tr:hover td { background: none; }
  .kasboek-table tr:last-child td { border-bottom: none; }

  .kasboek-table td {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.22rem 0;
    border-bottom: none;
    font-size: 0.875rem;
    color: var(--text-light);
  }

  /* Label links van de waarde */
  .kasboek-table td::before {
    content: attr(data-label);
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    min-width: 68px;
    padding-top: 0.12rem;
    flex-shrink: 0;
  }

  .kasboek-table .td-price { font-size: 0.9rem; }

  /* Verwijder-knop zweeft rechtsboven in kaartje */
  .kasboek-table td[data-label=""] {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    padding: 0;
    display: block;
  }
  .kasboek-table td[data-label=""]::before { display: none; }

  .delete-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  /* Breakdown-tabel in Totalen tab */
  .kasboek-breakdown { font-size: 0.82rem; }
  .kasboek-breakdown table { width: 100%; }

  /* Print-view padding op mobiel */
  #print-view { padding: 5vw !important; }
}

/* ══════════════════════════════════════════════════════
   CHATBOT
   ══════════════════════════════════════════════════════ */

.chatbot-toggle {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1.5px solid var(--border-d);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  z-index: 8000;
  color: rgba(255,255,255,.7);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.chatbot-toggle:hover { transform: scale(1.08); background: var(--accent); color: white; box-shadow: 0 6px 28px rgba(0,0,0,.5); }
.chatbot-toggle.open  { background: var(--bg-dark2); color: white; }

.chatbot-window {
  position: fixed;
  bottom: 9.5rem;
  right: 1.5rem;
  width: min(360px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 11rem));
  background: var(--bg-dark);
  border: 1px solid var(--border-d);
  border-radius: calc(var(--r) * 5);
  display: flex; flex-direction: column;
  overflow: hidden;
  z-index: 7999;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .2s;
}
.chatbot-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.chatbot-header {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--bg-dark2);
  border-bottom: 1px solid var(--border-d);
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .95rem; color: white; font-weight: 600; flex-shrink: 0;
}
.chatbot-header-info { flex: 1; min-width: 0; }
.chatbot-header-name   { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.9); }
.chatbot-header-status { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .1rem; }
.chatbot-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.35); font-size: 1.4rem; line-height: 1;
  padding: .2rem; transition: color .2s; flex-shrink: 0;
}
.chatbot-close:hover { color: rgba(255,255,255,.8); }

.chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 1rem 1rem .5rem;
  display: flex; flex-direction: column; gap: .6rem;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border-d); border-radius: 2px; }

.chatbot-msg {
  max-width: 86%;
  padding: .6rem .85rem;
  border-radius: 14px;
  font-size: .84rem;
  line-height: 1.55;
  white-space: pre-line;
  animation: cbMsgIn .2s ease;
  word-break: break-word;
}
.chatbot-msg.bot {
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chatbot-msg.user {
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chatbot-msg a {
  display: inline-block; margin-top: .45rem;
  font-size: .78rem; text-decoration: underline;
}
.chatbot-msg.bot a  { color: var(--accent); }
.chatbot-msg.user a { color: rgba(255,255,255,.8); }

@keyframes cbMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chatbot-typing {
  display: flex; gap: 4px; align-items: center;
  padding: .65rem .85rem;
  background: var(--surface);
  border-radius: 14px; border-bottom-left-radius: 4px;
  align-self: flex-start; width: 54px; flex-shrink: 0;
}
.chatbot-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: cbDot 1.2s ease-in-out infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: .2s; }
.chatbot-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cbDot {
  0%,60%,100% { transform: translateY(0); opacity: .35; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

.chatbot-quick-replies {
  padding: .4rem 1rem .6rem;
  display: flex; flex-wrap: wrap; gap: .4rem;
  flex-shrink: 0; min-height: 0;
}
.chatbot-qr-btn {
  padding: .32rem .8rem;
  border-radius: 20px;
  border: 1.5px solid rgba(156,122,103,.5);
  background: transparent;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: .75rem; cursor: pointer;
  transition: all .15s; white-space: nowrap;
}
.chatbot-qr-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }

.chatbot-input-wrap {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem .9rem;
  border-top: 1px solid var(--border-d);
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-d);
  border-radius: 20px;
  padding: .5rem .95rem;
  font-family: 'Inter', sans-serif;
  font-size: .84rem; color: rgba(255,255,255,.85);
  outline: none; transition: border-color .2s;
}
.chatbot-input:focus { border-color: var(--accent); }
.chatbot-input::placeholder { color: rgba(255,255,255,.25); }
.chatbot-send {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0; transition: transform .15s, background .15s;
}
.chatbot-send:hover { transform: scale(1.1); background: var(--bg-dark); }

/* ══════════════════════════════════════════════════════
   SALON STATUS BADGE
   ══════════════════════════════════════════════════════ */

.salon-status-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border-d);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.salon-status-badge:hover { opacity: .75; }

@media (max-width: 900px) {
  .salon-status-badge { display: none; }
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.salon-status-badge.is-open .status-dot {
  background: #6ecf6e;
  box-shadow: 0 0 5px #6ecf6e;
  animation: statusPulse 2s ease-in-out infinite;
}
.salon-status-badge.is-open { color: rgba(255,255,255,0.75); border-color: rgba(110,207,110,0.3); }
@keyframes statusPulse {
  0%,100% { box-shadow: 0 0 4px #6ecf6e; }
  50%      { box-shadow: 0 0 9px #6ecf6e; }
}

/* ══════════════════════════════════════════════════════
   QUIZ PAGINA
   ══════════════════════════════════════════════════════ */

.quiz-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
}
.quiz-hero {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}
.quiz-hero h1 { color: var(--text-inv); font-size: clamp(2rem,4vw,3rem); font-weight:400; margin:.5rem 0 .75rem; }
.quiz-hero p  { color: rgba(255,255,255,.4); max-width: 460px; margin: 0 auto; font-size:.9375rem; }

.quiz-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1.5rem 5rem;
}
.quiz-card {
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: calc(var(--r) * 4);
  width: 100%;
  max-width: 640px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 3px;
  background: rgba(0,0,0,0.12);
}
.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.quiz-inner {
  padding: 2.5rem 2.5rem 2rem;
}
.quiz-step-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  font-weight: 500;
}
.quiz-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1.75rem;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.4;
}
.quiz-option:hover { border-color: var(--accent); background: rgba(156,122,103,.08); transform: translateX(3px); }
.quiz-option.selected { border-color: var(--accent); background: rgba(156,122,103,.14); }
.quiz-option-icon {
  font-size: 1.4rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.quiz-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .875rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: .5rem 0;
  transition: color .2s;
}
.quiz-back:hover { color: var(--text); }
.quiz-back:disabled { opacity: .3; cursor: default; }

.quiz-result-wrap {
  padding: 2.5rem;
}
.quiz-result-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.quiz-result-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .75rem;
}
.quiz-result-wrap p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.quiz-result-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1rem 0 2rem;
}
.quiz-result-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.quiz-restart {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .875rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
  margin-top: 1.5rem;
  display: block;
}

/* Slide transition */
.quiz-step-enter { animation: slideInRight .3s ease forwards; }
.quiz-step-exit  { animation: slideOutLeft .3s ease forwards; }
@keyframes slideInRight {
  from { opacity:0; transform: translateX(30px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { opacity:1; transform: translateX(0); }
  to   { opacity:0; transform: translateX(-30px); }
}

/* ══════════════════════════════════════════════════════
   CADEAUBON PAGINA
   ══════════════════════════════════════════════════════ */

.gift-section { padding: 4rem 0 6rem; }
.gift-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.gift-form-card {
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: calc(var(--r) * 3);
  padding: 2.5rem;
}
.gift-form-card h2 { font-size: 1.4rem; font-weight:400; color:var(--text); margin-bottom:1.75rem; }

.gift-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-bottom: .75rem;
}
.gift-amount-btn {
  padding: .65rem .5rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
}
.gift-amount-btn:hover,
.gift-amount-btn.active { border-color: var(--accent); background: rgba(156,122,103,.12); color: var(--accent); }

.gift-custom-input {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--bg);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  transition: border-color .2s;
  outline: none;
}
.gift-custom-input:focus { border-color: var(--accent); }
.gift-custom-input::placeholder { color: var(--muted); opacity:.6; }

.gift-preview-wrap { position: sticky; top: 120px; }
.gift-card {
  aspect-ratio: 8.5 / 5.4;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #4a3830 60%, var(--bg-dark2) 100%);
  border-radius: calc(var(--r) * 4);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  color: white;
}
.gift-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.gift-card-brand { font-family: 'Playfair Display', serif; font-size: 1rem; opacity:.55; letter-spacing:.05em; }
.gift-card-center { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.gift-card-label { font-size: .65rem; letter-spacing:.15em; text-transform:uppercase; opacity:.45; margin-bottom:.5rem; }
.gift-card-recipient { font-family:'Playfair Display',serif; font-size:clamp(1.3rem,3vw,1.8rem); font-weight:400; margin-bottom: 1rem; min-height:2rem; }
.gift-card-message  { font-size:.82rem; opacity:.55; line-height:1.5; max-width:300px; min-height:1.2em; }
.gift-card-footer { display:flex; justify-content:space-between; align-items:flex-end; }
.gift-card-amount { font-family:'Playfair Display',serif; font-size:clamp(2rem,5vw,2.8rem); font-weight:400; line-height:1; }
.gift-card-meta   { text-align:right; font-size:.7rem; opacity:.4; line-height:1.5; }

.gift-print-section { margin-top: 1.5rem; }
.gift-print-hint { font-size:.8rem; color:var(--muted); margin-top:.75rem; text-align:center; }

@media print {
  body > *:not(#gift-print-area) { display: none !important; }
  #gift-print-area { display: block !important; }
  .gift-card {
    width: 148mm; height: 94mm;
    border-radius: 4mm;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    page-break-inside: avoid;
  }
}

/* ══════════════════════════════════════════════════════
   GALERIJ PAGINA
   ══════════════════════════════════════════════════════ */

.gallery-page { padding: 4rem 0 6rem; }
.gallery-filter-bar {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 3rem;
}
.gallery-filter-btn {
  padding: .55rem 1.35rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--accent);
  background: rgba(156,122,103,.12);
  color: var(--text);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: calc(var(--r)*2);
  overflow: hidden;
  cursor: pointer;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,30,24,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-masonry-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: .8rem;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 2rem;
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; }
.gallery-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: var(--r);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; opacity: .6;
  transition: opacity .2s; line-height: 1;
  font-family: sans-serif;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .gift-layout { grid-template-columns: 1fr; }
  .gift-preview-wrap { position: static; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .quiz-inner, .quiz-nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .gift-form-card { padding: 1.75rem; }
  .gift-amount-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Quiz promo section (homepage) ──────────────────── */

.quiz-promo {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}
.quiz-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quiz-promo-text .label { margin-bottom: 1rem; display: block; }
.quiz-promo-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.quiz-promo-text p {
  color: rgba(255,255,255,0.62);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.quiz-promo-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.quiz-promo-list li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.quiz-promo-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* Mock quiz card */
.quiz-promo-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.qpm-card {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 1.75rem 2rem;
}
.qpm-step {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.qpm-q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.1rem;
  line-height: 1.4;
}
.qpm-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.qpm-opt {
  padding: 0.55rem 0.9rem;
  border-radius: calc(var(--r) / 2);
  border: 1px solid var(--border-d);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  background: var(--surface);
}
.qpm-opt.qpm-active {
  border-color: var(--accent);
  color: white;
  background: rgba(175,148,120,0.12);
}
.qpm-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.7;
}
.qpm-result-preview {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--accent);
  border-radius: var(--r);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qpm-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.qpm-result-preview strong {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .quiz-promo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quiz-promo-mock { display: none; }
}

/* ── Quiz CTA band (on behandeling pages) ────────────── */

.quiz-cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #8a6d54 100%);
  padding: 2.5rem 0;
}
.quiz-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.quiz-cta-inner div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.quiz-cta-inner strong {
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
}
.quiz-cta-inner span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
}
.quiz-cta-band .btn-primary,
.quiz-cta-band .btn-primary span {
  background: white;
  color: #6b4f35;
  border-color: white;
  white-space: nowrap;
  flex-shrink: 0;
}
.quiz-cta-band .btn-primary:hover,
.quiz-cta-band .btn-primary:hover span {
  background: rgba(255,255,255,0.88);
}
@media (max-width: 640px) {
  .quiz-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Quiz result — enhanced ──────────────────────────── */

.quiz-result-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(175,148,120,0.08);
  border: 1px solid var(--border-d);
  border-radius: calc(var(--r) / 2);
  padding: 0.75rem 1rem;
  margin-bottom: 1.75rem;
}
.qrs-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.qrs-tags {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.quiz-result-main { margin-bottom: 2rem; }
.quiz-result-naam {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0.5rem 0 0.9rem;
}
.quiz-result-omschrijving {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.quiz-result-price {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--accent);
  background: rgba(175,148,120,0.1);
  border: 1px solid rgba(175,148,120,0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.quiz-result-tips {
  background: var(--bg-dark);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.5rem;
}
.qrt-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.quiz-result-tips ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.quiz-result-tips li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.quiz-result-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.quiz-result-silvia {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(175,148,120,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.qrs-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.qrs-name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.quiz-result-silvia blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
}

.quiz-result-alt {
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.75rem;
}
.qra-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.6rem;
}
.qra-inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}
.qra-inner strong { font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.qra-inner span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.qra-link {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.qra-link:hover { text-decoration: underline; }

/* ── Cookie consent banner ───────────────────────────── */

#cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-d);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(12px);
}
#cookie-consent.cc-visible { transform: translateY(0); }

.cc-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cc-text {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin: 0;
}
.cc-text strong { color: rgba(255,255,255,0.85); }
.cc-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cc-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cc-accept {
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
}
.cc-decline {
  background: none;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}
.cc-btn:hover { opacity: 0.8; }

/* ── 404 page ────────────────────────────────────────── */

.notfound-page body,
body.notfound-page { background: var(--bg-dark); }

.notfound-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
}
.notfound-inner { max-width: 560px; }
.notfound-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
  letter-spacing: -0.02em;
}
.notfound-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: white;
  margin: 0.5rem 0 1rem;
}
.notfound-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.notfound-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Mobile nav — hamburger icon + side panel ────────── */

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9978;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.ham-line {
  display: block;
  width: 20px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
}

.nav-toggle .ham-line + .ham-line { margin-top: 5px; }

.nav-toggle.open .ham-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .ham-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 680px) {
  .nav-overlay { display: block; }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    width: 46px; height: 46px;
    position: relative;
  }

  .main-navigation {
    width: min(320px, 85vw);
    left: auto;
    right: 0;
    top: 0; bottom: 0;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 3rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    gap: 1.5rem;
    overflow-y: auto;
  }

  .main-navigation a {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s;
  }
  .main-navigation.show a { opacity: 0.82; transform: translateX(0); }
  .main-navigation.show a.btn-nav { opacity: 1; }
  .main-navigation.show a:nth-child(1) { transition-delay: 0.06s; }
  .main-navigation.show a:nth-child(2) { transition-delay: 0.12s; }
  .main-navigation.show a:nth-child(3) { transition-delay: 0.18s; }
  .main-navigation.show a:nth-child(4) { transition-delay: 0.24s; }
  .main-navigation.show a:nth-child(5) { transition-delay: 0.30s; }
  .main-navigation.show a:nth-child(6) { transition-delay: 0.36s; }
  .main-navigation.show a:nth-child(7) { transition-delay: 0.42s; }
  .main-navigation.show a:nth-child(8) { transition-delay: 0.48s; }
  .main-navigation.show a:nth-child(9) { transition-delay: 0.54s; }
  .main-navigation.show a:nth-child(10) { transition-delay: 0.60s; }

  .salon-status-badge { display: none !important; }
}

/* ── Testimonials carousel ───────────────────────────── */

.tc-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.tc-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r);
}
.tc-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.tc-slide {
  flex: 0 0 100%;
  padding: 3rem 3.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
}
.tc-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
}
.tc-author {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-style: normal;
}
.tc-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-d);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tc-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.tc-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.tc-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 600px) {
  .tc-slide { padding: 2rem 1.5rem; }
  .tc-arrow { display: none; }
}

/* ── Micro-animations ────────────────────────────────── */

/* Card hover lift */
.sg-card {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.sg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.sg-card .sg-card-img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.sg-card:hover .sg-card-img {
  transform: scale(1.06);
}

/* Treatment card hover */
.treatment-cat {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.treatment-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleAnim 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}

/* ── Mobiele afspraakknop (sticky bottom) ────────────── */

.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9970;
  padding: 0.85rem 1.25rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-d);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.mobile-booking-bar.visible { transform: translateY(0); }
.mobile-booking-bar.hidden  { transform: translateY(100%); opacity: 0; }
.mobile-booking-link {
  display: block;
  text-align: center;
  background: var(--accent);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-booking-link:hover { opacity: 0.88; }

@media (max-width: 680px) {
  .mobile-booking-bar { display: block; }
  body { padding-bottom: 5rem; }
  .notfound-page body, body.notfound-page { padding-bottom: 0; }
}

/* ── FAQ pagina ──────────────────────────────────────── */

.faq-page-hero {
  padding: 9rem 0 5rem;
  text-align: center;
}
.faq-page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 400;
  margin: 0.5rem 0 1rem;
}
.faq-page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-categories {
  padding: 0 0 7rem;
}
.faq-category {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}
.faq-cat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-d);
  letter-spacing: 0.02em;
}

.faq-item {
  border-bottom: 1px solid var(--border-d);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  transition: color 0.2s;
}
.faq-question:hover { color: white; }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s ease, border-color 0.2s, background 0.2s;
  color: rgba(255,255,255,0.5);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}
.faq-answer-inner a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── Galerij — voor & na sectie ─────────────────────── */

.ba-gallery-section {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border-d);
}
.ba-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.ba-gallery-item {}
.ba-gallery-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

@media (max-width: 680px) {
  .ba-gallery-grid { grid-template-columns: 1fr; }
}

/* ── COFFEEBAR ──────────────────────────────────────── */
.coffeebar-section {
  background: var(--bg-dark);
  padding: 6rem 0;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}
.coffeebar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.coffeebar-text h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  color: white;
  margin: 0.5rem 0 1.25rem;
}
.coffeebar-lead {
  color: rgba(255,255,255,0.65);
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.coffeebar-lead strong { color: var(--accent); font-weight: 500; }
.coffeebar-menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.coffeebar-menu li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
}
.coffeebar-menu li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.coffeebar-brand {
  display: flex;
  justify-content: center;
}
.coffeebar-brand-inner {
  text-align: center;
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--r);
  background: rgba(201,169,110,0.05);
}
.coffeebar-from {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.coffeebar-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.coffeebar-desc {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.coffeebar-brand-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-style: italic;
}
@media (max-width: 768px) {
  .coffeebar-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .coffeebar-brand-inner { padding: 2rem 1.5rem; }
}

/* ── TEAM ───────────────────────────────────────────── */
.team-section {
  padding: 5rem 0 6rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border-d);
}
.team-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.team-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  color: white;
  margin: 0.5rem 0 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border-d);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}

/* Ronde foto met pijl-icoon */
.team-photo-circle {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: visible;
}
.team-photo-circle img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border: 3px solid rgba(201,169,110,0.3);
}
.team-card:nth-child(2) .team-photo-circle img {
  object-fit: cover;
  object-position: center 20%;
}
.team-card-arrow {
  position: absolute;
  top: 8px; right: 8px;
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1a1410;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.team-card-arrow:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.team-info h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
}
.team-role {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.team-info p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

/* Team page layout */
.team-page { padding: 4rem 0 6rem; background: transparent; border: none; }
.team-grid.team-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Placeholder als foto er nog niet is */
.team-photo-placeholder {
  background: var(--surface);
  border: 2px dashed rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}
.team-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  opacity: 0.6;
  user-select: none;
}

@media (max-width: 720px) {
  .team-grid.team-grid-page { grid-template-columns: 1fr 1fr; max-width: 560px; }
}
@media (max-width: 480px) {
  .team-grid.team-grid-page { grid-template-columns: 1fr; max-width: 360px; }
}
