/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #FAF8F4;
  color: #2C2A26;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8E2D8;
}
.nav-row1 {
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #2C2A26;
}
.nav-r { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #2C2A26;
  padding: 6px 0;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: #C9A96E;
  transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: #A07840; }

.lang-btn {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid #C9A96E;
  background: transparent;
  color: #A07840;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.lang-btn:hover { background: #C9A96E; color: #fff; }

/* Nav: two-row on mobile, one-row on wider screens */
.nav-row2 {
  display: none;
  width: 100%;
  background: rgba(245, 242, 236, 0.97);
  border-top: 1px solid #E8E2D8;
  justify-content: center;
  gap: 32px;
  padding: 0 24px;
  height: 44px;
  align-items: center;
}
.nav-links-desktop { display: flex; gap: 32px; align-items: center; }
@media (max-width: 580px) {
  .nav-row2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    height: auto;
    min-height: 44px;
    padding: 6px 24px;
  }
  .nav-links-desktop { display: none; }
}

/* ── HERO ── */
.hero-banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1A1610 0%, #2E2416 55%, #1C160E 100%);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,16,0.62) 0%, rgba(26,22,16,0.45) 50%, rgba(26,22,16,0.78) 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 40px 24px; max-width: 680px; }
.hero-tag {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #C9A96E;
  margin-bottom: 28px;
  display: block;
}
.hero-name {
  font-size: clamp(42px, 8vw, 76px);
  font-weight: 400;
  color: #F0EDE6;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: #C4BEAD;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-cta {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #C9A96E;
  border: 1px solid #C9A96E;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover { background: #C9A96E; color: #1A1610; }

/* ── SECTIONS ── */
.section { padding: 80px 24px; max-width: 860px; margin: 0 auto; }
.section--page { padding-top: 64px; padding-bottom: 96px; }
.section-heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #2C2A26;
  margin-bottom: 8px;
  line-height: 1.2;
}
.gold-rule { width: 48px; height: 1px; background: #C9A96E; margin-bottom: 32px; }
.section-body,
.prose p {
  font-size: 17px;
  line-height: 1.82;
  color: #4A4540;
  margin-bottom: 20px;
}
.divider { height: 1px; background: #E8E2D8; margin: 0 24px; }

.sub-heading,
.prose h2,
.prose h3 {
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #2C2A26;
  line-height: 1.3;
  margin: 0 0 16px;
}
.prose h2 { margin-top: 48px; }
.prose h2:first-child { margin-top: 0; }

/* ── STOELEN ── */
.stoel-block { margin-bottom: 64px; }
.stoel-block:last-child { margin-bottom: 0; }
.stoel-figure { margin: 12px 0 0; }
.stoel-img {
  width: 100%;
  max-width: 480px;
  border-radius: 2px;
  display: block;
}

/* ── TREATMENTS ── */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.treatment-card {
  background: #EDE8DE;
  padding: 36px 32px;
  border-radius: 2px;
}
.treatment-icon { margin-bottom: 20px; }
.treatment-title {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #2C2A26;
}
.treatment-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #6A6158;
}

.cta-link {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #A07840;
  border: none;
  border-bottom: 1px solid #C9A96E;
  padding-bottom: 4px;
  cursor: pointer;
  background: none;
  transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover { color: #7A5A28; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}
.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #D4C9B0, #B8A882);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A7A5A;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 24px;
}
.about-photo span { opacity: 0.7; }
img.about-photo--img {
  width: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.contact-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 10px;
}
.contact-value {
  font-size: 16px;
  color: #2C2A26;
  line-height: 1.5;
}
.contact-note {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  color: #6A6158;
  margin-top: 6px;
  line-height: 1.55;
}

/* ── REVIEWS CAROUSEL ── */
.reviews-section {
  padding: 80px 0;
  background: #F2EDE4;
}
.reviews-header {
  padding: 0 24px;
  max-width: 860px;
  margin: 0 auto 40px;
}
.reviews-header .gold-rule { margin-bottom: 0; }
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 2px;
  padding: 0 24px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(380px, 82vw);
  scroll-snap-align: start;
  background: #FAF8F4;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.review-quote {
  font-size: 15px;
  line-height: 1.78;
  color: #4A4540;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.review-quote::before {
  content: "\201C";
  font-size: 32px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
  color: #C9A96E;
  font-style: normal;
}
.review-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #C9A96E;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 24px;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C9A96E;
  opacity: 0.25;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.reviews-dot.active { opacity: 1; }

/* ── FOOTER ── */
.footer {
  background: #1C180F;
  color: #7A7060;
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  font-size: 18px;
  color: #C4BAA8;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.footer-sub + .footer-sub { margin-top: 4px; }
.footer-link { border-bottom: 1px solid #4A4234; transition: color 0.2s; }
.footer-link:hover { color: #C4BAA8; }
.footer-lang { margin-top: 20px; }
