﻿:root {
  --rose: #c77982;
  --rose-deep: #944c57;
  --sage: #697a68;
  --moss: #2f3d36;
  --shell: #fbf7f3;
  --linen: #f1dfd3;
  --pearl: #fffdfb;
  --ink: #20201f;
  --muted: #6f6760;
  --white: #ffffff;
  --border: rgba(32, 32, 31, 0.12);
  --shadow: 0 24px 70px rgba(37, 32, 29, 0.14);
  --copy-size: 18px;
  --copy-line: 1.72;
  --hero-height: 82svh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 clamp(12px, 3vw, 34px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1420px, calc(100% - clamp(24px, 6vw, 68px)));
  max-width: none;
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 64px);
  border: 1px solid rgba(148, 76, 87, 0.12);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: var(--shell);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(37, 32, 29, 0.08);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 220ms ease, padding 180ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--shell);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(37, 32, 29, 0.12);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(148, 76, 87, 0.38);
  border-radius: 50%;
  color: var(--rose-deep);
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.nav-group:not(.is-suppressed):hover .nav-parent,
.nav-group:not(.is-suppressed):focus-within .nav-parent {
  background: rgba(199, 121, 130, 0.13);
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 18px;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 30;
  min-width: 254px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(148, 76, 87, 0.16);
  border-radius: 18px;
  background: rgba(251, 247, 243, 0.98);
  box-shadow: 0 18px 46px rgba(37, 32, 29, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown a {
  justify-content: flex-start;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
}

.nav-group:not(.is-suppressed):hover .nav-dropdown,
.nav-group:not(.is-suppressed):focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-group.is-open .nav-parent {
  background: rgba(199, 121, 130, 0.13);
}

.nav-group.is-force-closed .nav-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;
}

.nav-group.is-force-closed .nav-parent {
  background: transparent !important;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(35, 28, 25, 0.76) 0%, rgba(35, 28, 25, 0.55) 36%, rgba(35, 28, 25, 0.12) 78%),
    linear-gradient(0deg, rgba(35, 28, 25, 0.22), rgba(35, 28, 25, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 70px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5dc;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 6.2vw, 82px);
}

h2 {
  color: var(--moss);
  font-size: clamp(31px, 4.2vw, 54px);
}

h3 {
  color: var(--moss);
  font-size: 25px;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.8vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--rose);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.intro-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: clamp(26px, 4vw, 44px) clamp(20px, 5vw, 64px) 0;
  background: var(--shell);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(148, 76, 87, 0.18);
  border-bottom: 1px solid rgba(148, 76, 87, 0.18);
}

.intro-grid p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 22px 0;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.welcome-text p,
.section-heading p:not(.eyebrow),
.aanbod-copy p,
.aanbod-note p,
.service-item p,
.gift-copy p,
.reviews-copy p,
.review-form label,
.split-copy p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  font-family: Lora, Georgia, serif;
}

.intro-grid strong {
  color: var(--rose-deep);
  font-family: Fraunces, Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
}

.intro-grid p + p {
  border-left: 0;
}

.section,
.welcome-section,
.split-section,
.gift-section,
.pricing-band,
.reviews-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.section {
  background: var(--shell);
}

.section-divider {
  position: relative;
  overflow: visible;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: min(1080px, calc(100% - 40px));
  height: 3px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(148, 76, 87, 0.78) 25%, rgba(199, 121, 130, 0.95) 50%, rgba(148, 76, 87, 0.78) 75%, transparent 100%);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 1650ms cubic-bezier(0.18, 0.88, 0.24, 1), opacity 420ms ease;
  transition-delay: 80ms;
}

.section-divider::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--shell);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cpath fill='%23fffaf7' d='M48 92c24.3 0 44-19.7 44-44S72.3 4 48 4 4 23.7 4 48s19.7 44 44 44Z'/%3E%3Cpath fill='%23899a75' d='M53.5 66.2c12.2-2.1 21.2 2.3 27.4 11.5-11.9 2.4-21.5-.6-28.6-9.1l1.2-2.4Z'/%3E%3Cpath fill='%237d8f6c' d='M42.2 66.2c-11.7-2.8-20.6.8-27.3 9.2 11.5 3.2 21.5.9 28.5-7.2l-1.2-2Z'/%3E%3Cpath fill='%23dc8d9a' d='M48 15.5c9.4 0 16.7 7.2 16.7 16.2 0 9.1-6.7 15.4-16.7 22.6-10-7.2-16.7-13.5-16.7-22.6 0-9 7.3-16.2 16.7-16.2Z'/%3E%3Cpath fill='%23cf7284' d='M31.5 27.5c-9.9-.4-18.9 6.6-19.4 16-.5 10 8.4 17.8 24.2 18.2-6.9-7.9-9.3-18.7-4.8-34.2Z'/%3E%3Cpath fill='%23bd5c72' d='M64.5 27.5c9.9-.4 18.9 6.6 19.4 16 .5 10-8.4 17.8-24.2 18.2 6.9-7.9 9.3-18.7 4.8-34.2Z'/%3E%3Cpath fill='%23b15468' d='M48 41c10.3 0 18.6 7.5 18.6 16.8 0 10.5-9.5 17.5-18.6 22.8-9.1-5.3-18.6-12.3-18.6-22.8C29.4 48.5 37.7 41 48 41Z'/%3E%3Cpath fill='%239f4558' d='M48 35.8c6.7 0 12.1 5 12.1 11.1 0 7.2-6 12.1-12.1 16.4-6.1-4.3-12.1-9.2-12.1-16.4 0-6.1 5.4-11.1 12.1-11.1Z'/%3E%3Cpath fill='none' stroke='%23fff5f2' stroke-width='4.2' stroke-linecap='round' stroke-linejoin='round' d='M58.7 45.4c-3.8-5.5-13.6-6.2-19.3-1.3-6.7 5.8-3 15.3 5.1 16.5 7.9 1.2 14.9-6.1 10.5-11.8-3-3.9-9.4-3.7-12.1.1'/%3E%3Cpath fill='none' stroke='%237c3b49' stroke-width='3.5' stroke-linecap='round' d='M48 72.8v12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 43px 43px;
  transform: translateX(-50%) rotate(-8deg) scale(0.2);
  opacity: 0;
  box-shadow: 0 0 0 10px rgba(255, 250, 247, 0.96), 0 12px 28px rgba(148, 76, 87, 0.18);
  transition: transform 780ms cubic-bezier(0.16, 1.2, 0.32, 1) 420ms, opacity 260ms ease 420ms;
}

.section-divider.is-divider-visible::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.section-divider.is-divider-visible::after {
  opacity: 1;
  transform: translateX(-50%) rotate(0deg) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .section-divider::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    transition: none;
  }

  .section-divider::after {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
    transition: none;
  }
}

.welcome-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.welcome-copy {
  max-width: 560px;
  padding-top: clamp(6px, 2vw, 28px);
}

.welcome-visual {
  display: contents;
}

.welcome-image {
  position: relative;
  grid-column: 2;
  margin: 0;
  margin-top: clamp(28px, 4vw, 58px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: clamp(22px, 3vw, 34px);
  background: var(--linen);
  box-shadow: 0 18px 54px rgba(37, 32, 29, 0.08);
}

.welcome-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(148, 76, 87, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-text {
  display: grid;
  grid-column: 1 / -1;
  gap: 20px;
  width: min(860px, 100%);
  margin-left: clamp(120px, 18vw, 260px);
  padding-top: 28px;
  border-top: 1px solid rgba(148, 76, 87, 0.22);
}

.welcome-text p {
  margin: 0;
  color: #514943;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 690px;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.aanbod-heading {
  margin-bottom: clamp(48px, 7vw, 86px);
}

.aanbod-editorial {
  display: grid;
  gap: clamp(54px, 8vw, 104px);
  max-width: 1180px;
  margin: 0 auto;
}

.aanbod-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.aanbod-feature-reverse .aanbod-copy {
  order: 2;
}

.aanbod-feature-reverse .aanbod-image {
  order: 1;
}

.aanbod-copy {
  display: grid;
  gap: 18px;
}

.aanbod-copy h3,
.aanbod-note h3 {
  max-width: 620px;
  font-size: clamp(27px, 3.2vw, 42px);
}

.aanbod-copy p,
.aanbod-note p {
  margin: 0;
  color: #514943;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.aanbod-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: clamp(22px, 3vw, 34px);
  background: var(--linen);
  box-shadow: 0 18px 54px rgba(37, 32, 29, 0.08);
}

.aanbod-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(148, 76, 87, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.aanbod-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-reveal {
  outline: 1px solid rgba(148, 76, 87, 0);
  outline-offset: 10px;
  transform: scale(1);
  transition:
    outline-color 650ms ease,
    outline-offset 650ms ease,
    box-shadow 650ms ease,
    transform 650ms ease;
}

.image-reveal img {
  transform: scale(1);
  transition: transform 850ms ease, filter 850ms ease;
}

.image-reveal.is-visible {
  outline-color: rgba(148, 76, 87, 0.26);
  outline-offset: 7px;
  box-shadow: 0 26px 72px rgba(37, 32, 29, 0.13);
}

.image-reveal.is-visible img {
  filter: saturate(1.035) brightness(1.015);
  transform: scale(1.028);
}

.aanbod-image-tall {
  aspect-ratio: 4 / 3.6;
}

.aanbod-image-wide {
  aspect-ratio: 16 / 10;
}

.aanbod-note-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(26px, 4vw, 44px) 0;
  border-top: 1px solid rgba(148, 76, 87, 0.18);
  border-bottom: 1px solid rgba(148, 76, 87, 0.18);
}

.aanbod-note-row.section-divider {
  border-top: 0;
}

.aanbod-note-row.section-divider::before {
  top: 20px;
  width: 100%;
}

.aanbod-note-row.section-divider::after {
  top: -4px;
}

.aanbod-note {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 24px;
  align-items: start;
}

.aanbod-note img {
  width: 116px;
  max-height: 92px;
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(148, 76, 87, 0.14);
}

.aanbod-note h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.6vw, 32px);
}

.aanbod-deep-dive {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid rgba(148, 76, 87, 0.18);
}

.aanbod-copy-muted {
  margin-top: clamp(34px, 5vw, 72px);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(28px, 6vw, 78px);
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.service-icon {
  display: inline-block;
  color: var(--rose-deep);
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.service-item p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.gift-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.98), rgba(239, 228, 219, 0.66)),
    var(--shell);
}

.gift-copy {
  border-top: 1px solid rgba(148, 76, 87, 0.22);
}

.gift-copy p {
  margin: 0;
  padding: 24px 0;
  color: #514943;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--rose-deep);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 38px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(240px, 0.8fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(239, 228, 219, 0.86), rgba(251, 247, 243, 0.92)),
    var(--shell);
}

.split-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #514943;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.credential-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(148, 76, 87, 0.22);
}

.credential-panel p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(148, 76, 87, 0.22);
  color: var(--moss);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(23px, 2.6vw, 30px);
  line-height: 1.12;
}

.pricing-band {
  background: var(--shell);
}

.price-list {
  margin: 0;
  border-top: 1px solid var(--border);
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.price-row span {
  display: grid;
  gap: 4px;
}

.price-row span strong {
  color: var(--moss);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.price-row small {
  color: var(--muted);
  font-family: Lora, Georgia, serif;
  font-size: 15px;
}

.price-row strong {
  color: var(--rose-deep);
  white-space: nowrap;
}

.tarieven-intro,
.tarieven-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.tarieven-intro {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
  text-align: center;
}

.tarieven-intro p {
  margin: 0;
  color: #514943;
  font-family: Lora, Georgia, serif;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.tarieven-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.package-panel {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(148, 76, 87, 0.16);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 250, 247, 0.98), rgba(239, 228, 219, 0.72)),
    var(--shell);
}

.package-panel h3 {
  font-size: clamp(27px, 3vw, 38px);
}

.package-panel p {
  margin: 0;
  color: #514943;
  font-family: Lora, Georgia, serif;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.package-list {
  display: grid;
  border-top: 1px solid rgba(148, 76, 87, 0.2);
}

.package-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 76, 87, 0.2);
}

.package-list span {
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-list strong {
  color: var(--moss);
  font-size: 16px;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.92), rgba(247, 232, 229, 0.46)),
    #fffaf7;
  color: var(--moss);
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(32px, 5vw, 62px);
}

.reviews-intro .section-heading {
  margin: 0;
  text-align: left;
}

.reviews-copy {
  padding-bottom: 8px;
}

.reviews-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.review-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(46px, 5vw, 70px) 48px;
}

.review-viewport {
  min-height: 176px;
  overflow: hidden;
  border-top: 1px solid rgba(148, 76, 87, 0.22);
}

.review-empty {
  margin: 0;
  padding: 30px 0 0;
  color: var(--muted);
  font-family: Lora, Georgia, serif;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.review-empty[hidden] {
  display: none;
}

.review-track {
  display: flex;
  gap: clamp(20px, 4vw, 52px);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-track figure {
  flex: 0 0 calc((100% - (clamp(20px, 4vw, 52px) * 2)) / 3);
  margin: 0;
  padding-top: 30px;
}

.review-track blockquote {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.22;
}

.review-track figcaption {
  margin-top: 18px;
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(148, 76, 87, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.92);
  color: var(--rose-deep);
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(61, 49, 43, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 76, 87, 0.42);
  background: var(--white);
}

.review-arrow:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

.review-arrow span {
  display: block;
  margin-top: -2px;
  font-family: Fraunces, Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.review-arrow-prev {
  left: 0;
}

.review-arrow-next {
  right: 0;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 76, 87, 0.28);
  cursor: pointer;
}

.review-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--rose-deep);
}

.review-form {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: clamp(34px, 5vw, 62px) auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(148, 76, 87, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 72px rgba(61, 49, 43, 0.06);
}

.review-form-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(27px, 3.2vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-form label {
  display: grid;
  gap: 9px;
  color: var(--moss);
  font-size: 17px;
  font-weight: 700;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 76, 87, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 247, 0.94);
  color: var(--ink);
  font: 600 16px/1.5 Manrope, Arial, sans-serif;
  outline: none;
}

.review-form input {
  min-height: 52px;
  padding: 0 16px;
}

.review-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px 16px;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(148, 76, 87, 0.62);
  box-shadow: 0 0 0 4px rgba(213, 127, 143, 0.14);
}

.review-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--rose-deep);
  font-size: 15px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: clamp(148px, 18vw, 220px) clamp(20px, 5vw, 64px) clamp(68px, 9vw, 110px);
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.86), rgba(247, 232, 229, 0.52)),
    var(--shell);
}

.page-hero-copy {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: Lora, Georgia, serif;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.62;
}

.page-image-hero {
  min-height: var(--hero-height);
}

.page-image-hero .hero-inner {
  padding-top: clamp(72px, 9vw, 108px);
}

.page-image-hero-over .hero-media img {
  object-position: center;
}

.page-image-hero-over .hero-overlay {
  background:
    linear-gradient(90deg, rgba(35, 28, 25, 0.78), rgba(35, 28, 25, 0.36) 48%, rgba(35, 28, 25, 0.12)),
    linear-gradient(180deg, rgba(35, 28, 25, 0.08), rgba(35, 28, 25, 0.48));
}

.about-story,
.about-focus,
.about-credentials {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.about-story {
  padding-bottom: clamp(56px, 7vw, 86px);
}

.about-focus {
  padding-top: clamp(42px, 6vw, 76px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  background: #fffaf7;
}

.about-story-copy,
.about-focus {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.about-story-copy h2,
.about-focus h2 {
  max-width: 760px;
}

.about-story-copy p:not(.eyebrow),
.about-focus-copy p {
  color: var(--muted);
  font-family: Lora, Georgia, serif;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.about-portrait-placeholder {
  display: grid;
  min-height: clamp(420px, 52vw, 620px);
  place-items: end start;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(148, 76, 87, 0.2);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(247, 232, 229, 0.78), rgba(255, 250, 247, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(213, 127, 143, 0.16), transparent 32%);
  box-shadow: 0 30px 90px rgba(61, 49, 43, 0.08);
}

.about-portrait-placeholder span {
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-focus {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--shell);
}

.about-focus-copy {
  max-width: 720px;
}

.about-focus-copy p:first-child {
  margin-top: 0;
}

.about-credentials {
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.96), rgba(247, 232, 229, 0.48)),
    #fffaf7;
}

.about-credentials > div {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(148, 76, 87, 0.18);
}

.credentials-grid article {
  padding-top: 26px;
}

.credentials-grid h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.credentials-grid p {
  color: var(--muted);
  font-family: Lora, Georgia, serif;
  font-size: var(--copy-size);
  line-height: var(--copy-line);
}

.contact-links {
  display: grid;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.contact-links a,
.contact-links p {
  margin: 0;
  color: var(--moss);
  font-size: clamp(21px, 2.6vw, 30px);
  font-family: Fraunces, Georgia, serif;
  font-weight: 800;
  line-height: 1.12;
  text-decoration: none;
}

.contact-links a,
.contact-links p {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(140px, 0.5fr) minmax(240px, 0.9fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(148, 76, 87, 0.16);
  background:
    linear-gradient(135deg, rgba(239, 228, 219, 0.92), rgba(255, 250, 247, 0.98) 52%, rgba(247, 232, 229, 0.9)),
    var(--shell);
  color: #5d514b;
}

.site-footer p,
.site-footer address,
.footer-registrations,
.footer-legal,
.footer-credit {
  margin: 0;
}

.site-footer strong {
  display: block;
  color: var(--rose-deep);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(30px, 2.9vw, 40px);
  line-height: 1.1;
}

.footer-info,
.footer-contact,
.footer-registrations,
.footer-legal,
.footer-side {
  display: grid;
  gap: 8px;
}

.footer-contact {
  font-style: normal;
  margin-top: 20px;
}

.site-footer a {
  color: var(--rose-deep);
  text-decoration-color: rgba(148, 76, 87, 0.28);
  text-underline-offset: 4px;
}

.footer-registrations {
  margin-top: 18px;
  color: #6f625b;
  font-size: 15px;
}

.footer-side {
  justify-self: end;
  text-align: right;
}

.footer-legal {
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.footer-credit {
  margin-top: clamp(28px, 5vw, 54px);
  max-width: 260px;
  color: #6f625b;
  font-size: 14px;
}

.footer-credit a {
  font-weight: 800;
}

.footer-badge {
  align-self: start;
  justify-self: center;
  display: inline-flex;
  width: 128px;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-badge img {
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header {
    inset: 0 10px auto;
    width: calc(100% - 20px);
    border-radius: 0 0 24px 24px;
    padding: 10px 14px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100svh - 96px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 250, 247, 0.99), rgba(251, 247, 243, 0.99)),
      var(--shell);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(37, 32, 29, 0.16);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a,
  .nav-parent {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.2;
  }

  .site-nav > a + a,
  .nav-group + a,
  .site-nav > a + .nav-group {
    margin-top: 3px;
  }

  .site-nav > a:hover,
  .nav-parent:hover {
    background: rgba(199, 121, 130, 0.1);
  }

  .nav-group {
    display: grid;
    padding: 4px 0 10px;
    border-top: 1px solid rgba(148, 76, 87, 0.12);
    border-bottom: 1px solid rgba(148, 76, 87, 0.12);
    margin: 4px 0;
  }

  .nav-parent {
    color: var(--rose-deep);
  }

  .nav-group::after {
    display: none;
  }

  .nav-parent::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 2px 10px 0;
    padding: 8px 10px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.44);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    content: "Behandelingen";
    padding: 0 8px 4px;
    color: var(--rose-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0.86;
  }

  .nav-dropdown a {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
  }

  .nav-dropdown a:hover {
    background: rgba(199, 121, 130, 0.1);
    color: var(--ink);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .welcome-section,
  .gift-section,
  .split-section,
  .contact-section,
  .about-story,
  .about-focus,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .welcome-visual {
    display: grid;
    gap: 24px;
  }

  .welcome-image,
  .welcome-text {
    grid-column: auto;
  }

  .welcome-image {
    margin-top: 0;
  }

  .welcome-text {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .reviews-intro {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    padding-right: 52px;
    padding-left: 52px;
  }

  .review-track {
    gap: 0;
  }

  .review-track figure {
    flex-basis: 100%;
  }

  .review-track figure + figure {
    border-top: 1px solid rgba(148, 76, 87, 0.14);
  }

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

  .aanbod-feature,
  .aanbod-deep-dive,
  .aanbod-note-row,
  .tarieven-layout {
    grid-template-columns: 1fr;
  }

  .aanbod-feature-reverse .aanbod-copy,
  .aanbod-feature-reverse .aanbod-image {
    order: initial;
  }

  .aanbod-copy-muted {
    margin-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-credit,
  .footer-legal,
  .footer-badge,
  .footer-side {
    justify-self: start;
    text-align: left;
  }

  .footer-credit {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .welcome-section.section-divider::before,
  .welcome-section.section-divider::after,
  .aanbod-note-row.section-divider::before,
  .aanbod-note-row.section-divider::after,
  .about-focus.section-divider::before,
  .about-focus.section-divider::after {
    display: none;
  }
  html {
    scroll-padding-top: 122px;
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(35, 28, 25, 0.82), rgba(35, 28, 25, 0.36));
  }

  .hero-inner {
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  h1 {
    font-size: clamp(45px, 16vw, 66px);
  }

  .page-hero {
    min-height: 66svh;
    padding-top: 132px;
  }

  .page-hero-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .about-portrait-placeholder {
    min-height: 340px;
    border-radius: 28px;
  }

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

  .intro-grid p + p {
    border-top: 1px solid rgba(148, 76, 87, 0.16);
  }

  .service-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .aanbod-note {
    grid-template-columns: 1fr;
  }

  .aanbod-note img {
    width: 128px;
  }

  .button {
    width: 100%;
  }

  .review-carousel {
    padding: 0 0 44px;
  }

  .review-arrow {
    top: auto;
    bottom: 0;
    width: 42px;
    height: 42px;
    box-shadow: 0 14px 30px rgba(61, 49, 43, 0.08);
  }

  .review-arrow-prev {
    left: calc(50% - 86px);
  }

  .review-arrow-next {
    right: calc(50% - 86px);
  }

  .review-dots {
    margin-top: 22px;
  }

  .review-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .review-form .button {
    justify-self: stretch;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

}









