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

:root {
  --primary: #7D6335;
  --primary-dark: #5C4228;
  --beige-light: #F5EDE0;
  --beige-medium: #E8D5B7;
  --beige-dark: #C8AA7D;
  --dark: #2C1F0E;
  --text: #4A3728;
  --text-light: #7A6555;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --max-w: 1200px;
  --sp: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(200,170,125,0.2);
  backdrop-filter: blur(8px);
}
.nav__wrap {
  width: 100%; max-width: var(--max-w);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav__logo img { height: 56px; }
.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__links a { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--dark); transition: color .2s; }
.nav__links a:hover { color: var(--primary); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--primary); }
.nav__phone-icon { width: 16px; height: 16px; flex-shrink: 0; }
.nav__phone-text { }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s; transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--beige-medium);
  padding: 32px 24px 40px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 95;
  transform: translateY(-110%);
  opacity: 0; pointer-events: none;
  transition: transform .35s ease, opacity .3s;
}
.nav__drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav__drawer-links { display: flex; flex-direction: column; border-top: 1px solid var(--beige-medium); margin-bottom: 24px; }
.nav__drawer-links a {
  font-family: var(--font-heading); font-size: 28px; font-weight: 600;
  color: var(--dark); padding: 16px 0; border-bottom: 1px solid var(--beige-medium);
  transition: color .2s;
}
.nav__drawer-links a:hover { color: var(--primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 26px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: all .2s;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--outline-dark { background: transparent; color: var(--dark); border-color: var(--beige-dark); }
.btn--outline-dark:hover { background: var(--beige-light); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--white); }

/* ── LABELS / HEADINGS ── */
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: block; }
.section-heading { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: var(--dark); line-height: 1.1; }
.section-heading--center { text-align: center; }
.section-heading--white { color: var(--white); }
.section-sub { font-size: 14px; color: var(--text-light); margin-top: 10px; }
.section-sub--center { text-align: center; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide--1 { background-image: url('hetkniphuys_1773902086_3856090950204760839_4028827833_1.jpg'); background-position: center center; }
.hero__slide--2 { background-image: url('hero-team.jpg'); background-position: center 25%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,10,2,0.80) 0%, rgba(20,10,2,0.35) 55%, rgba(20,10,2,0.05) 100%); }
.hero__dots {
  position: absolute; bottom: 28px; right: 40px;
  display: flex; gap: 8px; z-index: 3;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.hero__dot.active { background: var(--white); transform: scale(1.25); }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px 80px; }
.hero__h1 { font-family: var(--font-heading); font-size: clamp(52px, 7vw, 88px); font-weight: 700; color: var(--white); line-height: 0.95; margin-bottom: 4px; }
.hero__h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 52px); font-weight: 400; font-style: italic; color: var(--beige-medium); line-height: 1.2; margin-bottom: 20px; }
.hero__text { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 36px; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── BEHANDELINGEN GRID (cards met gradient) ── */
.behandelingen { background: var(--dark); padding: var(--sp) 0; }
.behandelingen__head { text-align: center; margin-bottom: 48px; padding: 0 40px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.behandelingen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.behandeling-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.behandeling-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.behandeling-card:hover img { transform: scale(1.06); }

.behandeling-card__gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 80px 24px 28px;
  background: linear-gradient(to top, rgba(20,10,2,0.92) 0%, rgba(20,10,2,0.5) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px;
  transition: padding .3s;
}

.behandeling-card:hover .behandeling-card__gradient { padding-bottom: 36px; }

.behandeling-card__title {
  font-family: var(--font-heading); font-size: 28px; font-weight: 600;
  color: var(--white); line-height: 1.1;
}

.behandeling-card__price {
  font-size: 12px; font-weight: 500; color: var(--beige-medium); letter-spacing: 0.3px;
}

.behandeling-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--beige-dark); margin-top: 8px;
  opacity: 0; transform: translateY(4px); transition: all .25s;
}

.behandeling-card:hover .behandeling-card__cta { opacity: 1; transform: translateY(0); }

/* Endorsement tag — Irene Schouten (in SISKO banner) */
.sisko__endorsement {
  position: absolute;
  bottom: 28px; right: 32px;
  display: flex; flex-direction: column; align-items: flex-end;
  z-index: 3;
  pointer-events: none;
  text-align: right;
}
.endorsement-tag__used {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  margin-bottom: 3px;
}
.endorsement-tag__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.1;
  margin-bottom: 3px;
}
.endorsement-tag__title {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
}

/* Mobile swipe */
@media (max-width: 768px) {
  .behandelingen__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 3px;
    padding-bottom: 0;
  }
  .behandelingen__grid::-webkit-scrollbar { display: none; }
  .behandeling-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }
  .behandeling-card__cta { opacity: 1; transform: none; }
}

/* ── OVER ONS ── */
.over-ons { display: grid; grid-template-columns: 50fr 50fr; min-height: 780px; }
.over-ons__image { background-image: url('susan.webp'); background-size: cover; background-position: center 12%; }
.over-ons__content { background: var(--beige-light); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.over-ons__heading { font-family: var(--font-heading); font-size: clamp(34px, 3.5vw, 46px); font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 24px; }
.over-ons__text { font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 12px; }
.over-ons__text:last-of-type { margin-bottom: 32px; }

/* ── SISKO ── */
.sisko {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sisko__bg {
  position: absolute; inset: 0;
  background-image: url('ireneschouten1_1742545866_3593057608081315026_50423180_1.jpg');
  background-size: 55% auto;
  background-position: right 15%;
  background-repeat: no-repeat;
  background-color: #140a02;
}

.sisko__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,10,2,0.96) 0%,
    rgba(44,25,8,0.88) 35%,
    rgba(80,50,20,0.55) 65%,
    rgba(80,50,20,0.12) 100%
  );
}

.sisko__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.sisko__content {
  max-width: 520px;
  padding: 80px 0;
}

.sisko__logo {
  height: 52px; width: auto;
  margin-bottom: 28px;
  border-radius: 4px;
}

.sisko__heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600; color: var(--white);
  line-height: 1.15; margin-bottom: 24px;
}
.sisko__heading em { font-style: italic; color: var(--beige-medium); }

.sisko__list { margin-bottom: 32px; }
.sisko__list li {
  font-size: 14px; color: rgba(255,255,255,0.8);
  padding: 8px 0 8px 20px; position: relative;
  border-bottom: 1px solid rgba(200,170,125,0.2);
}
.sisko__list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--beige-dark);
}

/* ── TEAM ── */
.team { background: var(--beige-light); padding: var(--sp) 0; }
.team__head { text-align: center; margin-bottom: 52px; }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.team-card { background: var(--white); border-radius: 3px; overflow: hidden; text-align: center; cursor: pointer; transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,10,2,0.12); }
.team-card__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.team-card__body { padding: 20px 16px 24px; }
.team-card__name { font-family: var(--font-heading); font-size: 26px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.team-card__role { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.team-card__tag { font-size: 12px; color: var(--text-light); font-style: italic; }

@media (max-width: 768px) {
  .team__grid {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; gap: 12px;
    padding: 0 24px 16px; margin: 0 -24px;
  }
  .team__grid::-webkit-scrollbar { display: none; }
  .team-card { flex: 0 0 72vw; scroll-snap-align: start; }
}

/* ── USPS ── */
.usps { background: var(--white); padding: var(--sp) 0; border-top: 1px solid var(--beige-medium); border-bottom: 1px solid var(--beige-medium); }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.usp-item__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--white); }
.usp-item__title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.usp-item__desc { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── GALERIJ ── */
.galerij { background: var(--beige-light); padding: var(--sp) 0; }
.galerij__head { text-align: center; margin-bottom: 40px; }
.galerij__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.galerij__item { aspect-ratio: 1; overflow: hidden; border-radius: 3px; }
.galerij__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.galerij__item:hover img { transform: scale(1.04); }
.galerij__item--hidden { display: none; }
.galerij__item--hidden.show { display: block; }
.galerij__more { text-align: center; margin-top: 32px; }

/* ── REVIEWS ── */
.reviews { background: var(--white); padding: var(--sp) 0; }
.reviews__head { text-align: center; margin-bottom: 48px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--beige-light); border-radius: 6px; padding: 28px; }
.review-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.review-card__name { font-size: 14px; font-weight: 600; color: var(--dark); }
.review-card__google { font-size: 11px; color: var(--text-light); }
.review-card__stars { color: #F5C518; font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.review-card__text { font-size: 13px; line-height: 1.7; color: var(--text); }

/* ── FAQ ── */
.faq { background: var(--beige-light); padding: var(--sp) 0; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--beige-dark); }
.faq-item:first-child { border-top: 1px solid var(--beige-dark); }
.faq-item__question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--dark); transition: color .2s; }
.faq-item__question:hover { color: var(--primary); }
.faq-item__icon { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--beige-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--primary); transition: transform .25s; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-item__answer { max-height: 400px; }
.faq-item__answer p { padding: 0 0 20px; font-size: 14px; line-height: 1.8; color: var(--text); }

/* ── OPENINGSTIJDEN ── */
.openingstijden { background: var(--dark); padding: var(--sp) 0; }
.openingstijden__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.openingstijden__heading { font-family: var(--font-heading); font-size: 36px; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(200,170,125,0.15); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; font-size: 14px; color: rgba(255,255,255,0.75); }
.hours-table td:first-child { color: var(--beige-medium); font-weight: 500; }
.hours-table td:last-child { text-align: right; }
.hours-note { font-size: 12px; color: rgba(200,170,125,0.55); font-style: italic; margin-top: 12px; }
.locatie__item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.8); }
.locatie__icon { width: 18px; flex-shrink: 0; margin-top: 2px; color: var(--beige-dark); }

/* ── FOOTER ── */
.footer { background: var(--white); border-top: 1px solid var(--beige-medium); }
.footer__body { padding: 64px 0 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 64px;
  align-items: start;
}
.footer__brand-logo { height: 52px; width: auto; margin-bottom: 20px; }
.footer__desc { font-size: 13px; line-height: 1.8; color: var(--text-light); margin-bottom: 24px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--beige-medium);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: border-color .2s, color .2s;
}
.footer__social-link:hover { border-color: var(--primary); color: var(--primary); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__col-heading { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-size: 13px; color: var(--text-light); transition: color .2s; }
.footer__nav a:hover { color: var(--primary); }
.footer__col--partner { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer__partner-logo { max-height: 80px; width: auto; }
.footer__anko-fallback {
  flex-direction: column; align-items: center; gap: 2px;
  text-align: center;
}
.footer__anko-crown { font-size: 28px; color: var(--primary); line-height: 1; }
.footer__anko-name { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--dark); line-height: 1; letter-spacing: 2px; }
.footer__anko-since { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }
.footer__bottom {
  border-top: 1px solid var(--beige-medium);
  padding: 16px 0;
  background: var(--dark);
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }
.footer__bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer__bottom a:hover { color: var(--beige-medium); }

/* ══════════════════════════════════
   MODAL
══════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,10,2,0.7);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 24px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  max-width: 580px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  border-radius: 4px;
  transform: translateY(20px);
  transition: transform .3s;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal__header {
  position: relative;
  height: 220px; overflow: hidden;
}
.modal__header img { width: 100%; height: 100%; object-fit: cover; }
.modal__header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,2,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.modal__header-title {
  font-family: var(--font-heading); font-size: 36px; font-weight: 700;
  color: var(--white); line-height: 1.0;
}

.modal__body { padding: 32px 36px 36px; }

.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: none; cursor: pointer;
  color: white; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.modal__close:hover { background: rgba(0,0,0,0.7); }

.modal__price-list { margin: 20px 0 28px; }
.modal__price-row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--beige-medium);
}
.modal__price-row:first-child { border-top: 1px solid var(--beige-medium); }
.modal__price-info { flex: 1; }
.modal__price-name { font-size: 14px; font-weight: 500; color: var(--dark); }
.modal__price-desc { font-size: 12px; color: var(--text-light); font-style: italic; }
.modal__price-dots { flex: 1; border-bottom: 1px dotted var(--beige-dark); margin: 0 8px 3px; min-width: 16px; }
.modal__price-amount { font-size: 14px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.modal__price-amount--request { color: var(--text-light); font-weight: 400; font-style: italic; }

.modal__intro { font-size: 14px; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.modal__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ══════════════════════════════════
   BEHANDELINGEN PAGINA
══════════════════════════════════ */
.pag-hero { padding: 140px 0 60px; background: var(--beige-light); text-align: center; }
.pag-hero__h1 { font-family: var(--font-heading); font-size: clamp(40px, 5vw, 64px); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.pag-hero__sub { font-size: 15px; color: var(--text-light); }

.filter-bar { background: var(--white); border-bottom: 1px solid var(--beige-medium); padding: 20px 0; position: sticky; top: 72px; z-index: 50; }
.filter-bar__inner { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 10px 18px; border-radius: 2px; border: 1px solid var(--beige-dark); background: transparent; color: var(--text); cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.price-section { padding: 56px 0; border-bottom: 1px solid var(--beige-medium); }
.price-section__heading { font-family: var(--font-heading); font-size: 36px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.price-section__intro { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.price-list { border-top: 1px solid var(--beige-medium); }
.price-row { display: flex; align-items: baseline; gap: 8px; padding: 13px 0; border-bottom: 1px solid var(--beige-medium); }
.price-row__info { flex: 1; }
.price-row__name { font-size: 14px; font-weight: 500; color: var(--dark); }
.price-row__desc { font-size: 12px; color: var(--text-light); font-style: italic; margin-top: 2px; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--beige-dark); margin: 0 8px 4px; min-width: 20px; }
.price-row__price { font-size: 14px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.price-row__price--request { color: var(--text-light); font-weight: 400; font-style: italic; }
.price-section--hidden { display: none; }

/* ── TEAM MODAL ── */
.team-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,10,2,0.65);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 24px;
}
.team-modal-overlay.active { opacity: 1; pointer-events: all; }

.team-modal {
  position: relative;
  background: var(--white);
  max-width: 420px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  border-radius: 4px;
  transform: translateY(24px);
  transition: transform .3s;
}
.team-modal-overlay.active .team-modal { transform: translateY(0); }

.team-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.35); border: none; cursor: pointer;
  color: white; font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 2;
}
.team-modal__close:hover { background: rgba(0,0,0,0.65); }

.team-modal__photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.team-modal__body { padding: 28px 32px 36px; }
.team-modal__name { font-family: var(--font-heading); font-size: 38px; font-weight: 600; color: var(--dark); line-height: 1.1; margin-bottom: 4px; }
.team-modal__role { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: block; }
.team-modal__bio { font-size: 14px; line-height: 1.85; color: var(--text); margin-bottom: 24px; }
.team-modal__specialties { display: flex; flex-wrap: wrap; gap: 8px; }
.team-modal__tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); background: var(--beige-light);
  border: 1px solid var(--beige-dark); padding: 6px 12px; border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .over-ons { grid-template-columns: 1fr; }
  .over-ons__image { min-height: 360px; }
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --sp: 56px; }
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone-text { display: none; }
  .nav__wrap { padding: 0 24px; }
  .behandelingen__grid { max-width: none; }
  .hero { height: 80vh; min-height: 480px; }
  .hero__content { padding: 0 24px 40px; }
  .hero__h1 { font-size: 44px; }
  .hero__h2 { font-size: 26px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { text-align: center; }
  .hero__dots { right: 20px; bottom: 20px; }
  .sisko { min-height: 500px; }
  .sisko__inner { padding: 0 24px; }
  .sisko__content { padding: 56px 0; }
  .openingstijden__grid { grid-template-columns: 1fr; gap: 48px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .usps__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .galerij__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__col--partner { justify-content: flex-start; }
  .footer__desc { max-width: none; }
  .modal__body { padding: 24px; }
}
