/* --- RESET & ROOT --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent:    #E3A78F;
  --dark:      #4C3949;
  --light-bg:  #EAE0DF;
  --depth:     #754B61;
  --grey:      #B2ABB3;
  --white:     #ffffff;
  --text:      #2e1731;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fdf8f5;
  overflow-x: hidden;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-fill {
  background: linear-gradient(to top, #ffffff, #6e4460);
  border-color: transparent;
  color: var(--white);
}
.btn-fill:hover {
  background: linear-gradient(to top, #f0e4ea, #5a3450);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(110,68,96,.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-solid {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--depth);
}
.btn-solid:hover {
  background: #f0e8f4;
  border-color: #f0e8f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(117,75,97,.28);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 52px;
  transition: background .35s, padding .3s, box-shadow .35s;
}
.nav.scrolled {
  background: var(--dark);
  padding: 13px 52px;
  box-shadow: 0 2px 28px rgba(0,0,0,.28);
}
.nav-menu {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; width: 28px;
}
.nav-menu span {
  display: block; height: 2px; width: 100%;
  background: rgba(255,255,255,.88); border-radius: 2px;
  transition: background .3s;
}
.nav.scrolled .nav-menu span { background: rgba(255,255,255,.8); }
.nav-logo-link {
  display: flex; align-items: center;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-logo { width: 160px; height: auto; }
.nav-logo path, .nav-logo g { fill: #E3A78F; }
.nav-right {
  display: flex; align-items: center; gap: 18px;
}
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.88);
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.nav.scrolled .nav-phone { color: rgba(255,255,255,.8); }
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { flex-shrink: 0; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: clamp(520px, 68vh, 740px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #5f3a52;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 1.5s ease;
}
.hero-video-b { opacity: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(95,58,82,.55) 0%, rgba(95,58,82,.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 110px 32px 90px;
}
.hero-content .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.hero-content .btn:hover {
  background: #d4916e;
  border-color: #d4916e;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(227,167,143,.4);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.88);
  line-height: 1.8; margin-bottom: 40px;
}

/* --- SECTION LABEL --- */
.sec-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--depth);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* --- BEHANDELINGEN --- */
.behandelingen {
  background: #fdf8f5;
  padding: 60px 52px 52px;
  text-align: center;
  border-radius: 32px 32px 0 0;
  margin-top: -52px;
  position: relative;
  z-index: 5;
}
.behandelingen h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 500; color: var(--text);
  margin-bottom: 60px;
}
.card-grid {
  display: flex; align-items: stretch;
  max-width: 1080px; margin: 0 auto 36px;
}
.card {
  flex: 1; padding: 40px 44px;
}
.card + .card { border-left: 1px solid #e8e2e0; }
.icon-ring {
  width: 116px; height: 116px;
  border-radius: 50%;
  border: 1.5px solid var(--grey);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  background: #fdf8f5;
}
.icon-ring img {
  width: 72px; height: 72px;
  object-fit: contain;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.card-price {
  font-size: 12.5px; font-weight: 500;
  color: var(--depth); margin-bottom: 18px;
}
.card p {
  font-size: 13px; font-weight: 300;
  color: #6b5f5e; line-height: 1.82;
}

/* --- TICKER --- */
.ticker {
  background: var(--dark);
  padding: 15px 0; overflow: hidden;
  white-space: nowrap; user-select: none;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 76s linear infinite;
}
.ticker-item {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-style: italic;
  padding: 0 36px;
}
.ticker-item.dim  { color: rgba(255,255,255,.38); }
.ticker-item.hi   { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- OVER MIJ --- */
.over-mij-wrap {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
  padding: 100px 52px;
}
.over-mij-photo {
  aspect-ratio: 3/4;
  background: var(--light-bg);
  border-radius: 4px;
  overflow: hidden;
}
.over-mij-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.over-mij-text .sec-label { text-align: left; }
.over-mij-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500; color: var(--text);
  line-height: 1.22; margin-bottom: 28px;
}
.over-mij-text p {
  font-size: 13.5px; font-weight: 300;
  color: #5f5254; line-height: 1.95;
  margin-bottom: 16px;
}
.over-mij-text p.cta-p {
  font-weight: 500; color: var(--depth);
  margin-bottom: 24px;
}
.provoet-img {
  height: 52px; width: auto;
  display: block; margin-top: 8px;
  margin-left: auto;
}

/* --- REVIEWS --- */
.reviews {
  background: var(--dark);
  padding: 80px 0;
}
.reviews-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  perspective: 1200px;
}
.reviews-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.review {
  position: absolute;
  width: 460px;
  left: 50%;
  top: 40px;
  text-align: center;
  padding: 20px 32px;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1), opacity 0.7s ease;
  will-change: transform, opacity;
}
.review.center {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
}
.review.left {
  transform: translateX(-50%) translateX(-500px) rotateY(25deg) scale(0.85);
  opacity: 0.55;
  z-index: 3;
}
.review.right {
  transform: translateX(-50%) translateX(500px) rotateY(-25deg) scale(0.85);
  opacity: 0.55;
  z-index: 3;
}
.review.hidden {
  transform: translateX(-50%) translateX(800px) rotateY(-25deg) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0s 0.12s;
}
.review-stars {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 6px; margin-bottom: 24px;
}
.review-stars span:nth-child(1) { transform: translateY(8px); }
.review-stars span:nth-child(2) { transform: translateY(3px); }
.review-stars span:nth-child(3) { transform: translateY(0); }
.review-stars span:nth-child(4) { transform: translateY(3px); }
.review-stars span:nth-child(5) { transform: translateY(8px); }
.star     { color: var(--accent); font-size: 26px; }
.star-off { color: rgba(227,167,143,.3); font-size: 26px; }
.review-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic;
  color: var(--accent); margin-bottom: 16px;
}
.review-quote {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.95;
}
.reviews-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 36px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* --- TARIEVEN --- */
.tarieven {
  background: var(--light-bg);
  padding: 100px 52px;
  position: relative; overflow: hidden;
}
.tarieven-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.tarieven h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 500; color: var(--text);
  margin-bottom: 48px;
}
.tarief-row {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 28px; padding: 22px 0;
  border-bottom: 1px solid rgba(76,57,73,.18);
}
.tarief-row:first-of-type { border-top: 1px solid rgba(76,57,73,.18); }
.tarief-info h4 {
  font-size: 14.5px; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.tarief-info p {
  font-size: 12.5px; font-weight: 300;
  color: #8a7e7e; line-height: 1.6;
  max-width: 500px;
}
.tarief-price {
  font-size: 14.5px; font-weight: 600;
  color: var(--depth); white-space: nowrap;
  flex-shrink: 0; padding-top: 2px;
}
.tarieven-deco {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 520px; opacity: .45;
  pointer-events: none; z-index: 1;
}

/* --- CTA BLOCK --- */
.cta-block {
  position: relative;
  padding: 100px 52px;
  text-align: center;
  background-image: url('assets/fotos/DSC09845.jpg');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(76,57,73,.72) 0%, rgba(95,58,82,.58) 100%);
}
.cta-block > * {
  position: relative;
  z-index: 1;
}
.cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500; color: rgba(255,255,255,.92);
  line-height: 1.3; margin-bottom: 18px;
}
.cta-block p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.72); margin-bottom: 40px;
}

/* --- FAQ --- */
.faq {
  max-width: 880px; margin: 0 auto;
  padding: 100px 52px;
}
.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500; color: var(--text);
  margin-bottom: 48px;
}
details.faq-item { border-bottom: 1px solid var(--light-bg); }
details.faq-item summary {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  list-style: none; user-select: none;
  transition: color .2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--depth); }
.faq-icon {
  flex-shrink: 0; color: var(--depth);
  font-size: 22px; font-weight: 300;
  transition: transform .3s; line-height: 1;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 13px; font-weight: 300;
  color: #6b5e5d; line-height: 1.9;
}

/* --- FOOTER --- */
footer {
  background: var(--dark);
  padding: 80px 52px 40px;
  color: var(--white);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px; max-width: 1100px;
  margin: 0 auto 56px;
}
.footer-col h5 {
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 18px;
}
.footer-col address {
  font-style: normal; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.62); line-height: 2.1;
}
.footer-col address a {
  color: rgba(255,255,255,.62);
  text-decoration: none; display: block;
  transition: color .2s;
}
.footer-col address a:hover { color: var(--accent); }
.footer-nav a {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.62);
  text-decoration: none; line-height: 2.4;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-col .btn-fill {
  margin-top: 16px; font-size: 12.5px; padding: 11px 24px;
}
.footer-social-title {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px; display: block;
  letter-spacing: 0.04em;
}
.footer-socials {
  display: flex; gap: 10px;
}
.social-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--white);
  transition: background .2s, transform .2s;
}
.social-dot:hover {
  background: #cf906e;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-logo { width: 148px; height: auto; }
.footer-legal {
  font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,.3);
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }
.made-by {
  font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,.25);
  letter-spacing: 0.08em;
}

/* --- NAV DRAWER --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 100%;
  background: var(--dark);
  z-index: 500;
  padding: 64px 40px 40px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,.65);
  font-size: 30px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  transition: color .2s;
}
.nav-drawer-close:hover { color: var(--accent); }
.nav-drawer-links {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}
.nav-drawer-links li { border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-drawer-links a {
  display: block;
  padding: 15px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s;
}
.nav-drawer-links a:hover { color: var(--accent); }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .nav  { padding: 18px 28px; }
  .nav.scrolled { padding: 12px 28px; }
  .card-grid { flex-direction: column; max-width: 500px; margin-left: auto; margin-right: auto; }
  .card + .card { border-left: none; border-top: 1px solid #e8e2e0; }
  .over-mij-wrap { grid-template-columns: 1fr; gap: 44px; }
  .over-mij-photo { aspect-ratio: 4/3; max-width: 460px; }
  .over-mij-photo img { object-position: center 15%; }
  .tarieven-deco { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-logo { width: 110px; }
  .nav-phone { display: none; }
  .nav-right .btn { display: none; }
  .behandelingen, .tarieven, .faq, .cta-block { padding: 68px 22px; }
  footer { padding: 60px 22px 36px; }
  .over-mij-wrap { padding: 68px 22px; }
  .reviews { padding: 68px 0; }
  .reviews-carousel { height: 420px; }
  .review { width: 82vw; padding: 24px 28px; top: 0; }
  .review.center { transform: translateX(-50%) scale(1); }
  .review.left   { transform: translateX(-50%) translateX(-74vw) rotateY(20deg) scale(0.85); opacity: 0.55; }
  .review.right  { transform: translateX(-50%) translateX(74vw)  rotateY(-20deg) scale(0.85); opacity: 0.55; }
  .review.hidden { transform: translateX(-50%) translateX(130vw) rotateY(-20deg) scale(0.6); opacity: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
