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

:root {
  --green-dark: #2B4A3E;
  --green-dark-hover: #1E3A2F;
}

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: 10px 24px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.nav-logo-tagline {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--green-dark);
  line-height: 1.3;
}
.nav-logo-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  line-height: 1.2;
}
@media (min-width: 720px) {
  .nav-logo-tagline { font-size: 11px; }
  .nav-logo-name { font-size: 16px; }
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.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;
  white-space: nowrap;
}
.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: 0;
  background: transparent;
  color: #A07840;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-btn:hover { background: #C9A96E; color: #fff; }
.lang-btn--flag {
  padding: 4px 8px;
  min-width: 36px;
}
.lang-flag {
  display: flex;
  flex-direction: column;
  width: 22px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
}
.lang-flag-stripe { flex: 1; }
.lang-flag-stripe--black { background: #000; }
.lang-flag-stripe--red { background: #D00; }
.lang-flag-stripe--gold { background: #FFCE00; }
.lang-flag-stripe--nl-red { background: #AE1C28; }
.lang-flag-stripe--nl-white { background: #FFF; }
.lang-flag-stripe--nl-blue { background: #21468B; }

.nav-links-desktop {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #E8E2D8;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  color: var(--green-dark);
  transition: background 0.2s, border-color 0.2s;
}
.nav-menu-btn:hover {
  background: #F2EDE4;
  border-color: #C9A96E;
}
.nav-menu-icon,
.nav-menu-icon::before,
.nav-menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}
.nav-menu-icon::before,
.nav-menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-menu-icon::before { top: -6px; }
.nav-menu-icon::after { top: 6px; }
.nav-menu-dialog {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  width: min(320px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  top: 0;
  right: 0;
  left: auto;
  transform: none;
}
.nav-menu-dialog[open] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(320px, 100vw);
  max-width: min(320px, 100vw);
  transform: none;
  margin: 0;
}
@media (max-width: 48rem) {
  .nav-menu-dialog[open] {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 100vw);
    max-width: min(320px, 100vw);
    transform: none;
  }
}
.nav-menu-dialog::backdrop {
  background: rgba(26, 22, 16, 0.45);
}
.nav-menu-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FAF8F4;
}
.nav-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E2D8;
}
.nav-menu-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
}
.nav-menu-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #6A6158;
  cursor: pointer;
  padding: 0;
}
.nav-menu-links {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  gap: 4px;
  flex: 1;
}
.nav-menu-links .nav-link {
  padding: 12px 0;
  font-size: 15px;
  white-space: nowrap;
  width: fit-content;
}
.nav-menu-lang {
  padding: 16px 20px 24px;
  border-top: 1px solid #E8E2D8;
}
@media (min-width: 900px) {
  .nav-links-desktop { display: flex; }
  .nav-menu-btn { display: none; }
  .nav-r { gap: 32px; }
}

/* ── HERO ── */
.hero-banner {
  position: relative;
  height: clamp(280px, 52vh, 520px);
  overflow: hidden;
  background: #E8E2D8;
}
@media (min-width: 85rem) {
  .hero-banner {
    max-width: 80rem;
    margin: 2.5rem auto;
    border-radius: 1.5rem;
  }
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-intro {
  text-align: center;
  padding: 48px 24px 56px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-tag {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(15px, 2.4vw, 20px);
  letter-spacing: 0.04em;
  color: var(--green-dark);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-name {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: #4A4540;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #A07840;
  border: 1px solid #C9A96E;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover { background: #C9A96E; color: #fff; }

/* ── 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: var(--green-dark);
  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: var(--green-dark);
  line-height: 1.3;
  margin: 0 0 16px;
}
.prose a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--green-dark-hover); }
.prose--experience { font-style: italic; }
.prose h2 { margin-top: 48px; }
.prose h2:first-child { margin-top: 0; }

/* ── STOELEN ── */
.stoel-block {
  margin-bottom: 64px;
  scroll-margin-top: 88px;
}
.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-icon svg { display: block; }
.treatment-title {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.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 minmax(180px, 240px);
  gap: 48px;
  align-items: start;
}
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}
.about-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-photo {
  aspect-ratio: 4/5;
  max-width: 240px;
  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%;
  max-width: 240px;
  aspect-ratio: 4/5;
  object-fit: cover;
  padding: 0;
  display: block;
  border-radius: 2px;
}
.about-hands {
  width: 100%;
  max-width: 240px;
  border-radius: 2px;
  display: block;
}
.about-closing {
  margin-top: 40px;
  max-width: none;
}

/* ── 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 {
  --reviews-gutter: clamp(24px, 5vw, 72px);
  padding: 80px 0;
  background: #F2EDE4;
}
.reviews-header {
  padding: 0 var(--reviews-gutter);
  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-inline: var(--reviews-gutter);
  scroll-padding-inline: var(--reviews-gutter);
}
.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 var(--reviews-gutter);
}
.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: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #F0EDE6;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.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 rgba(255, 255, 255, 0.35); transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.section-body a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-body a:hover { color: var(--green-dark-hover); }
.footer-lang { margin-top: 20px; }
