@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-primary: #4A7C6F;
  --color-primary-dark: #3A6B5E;
  --color-secondary: #C8A97E;
  --color-bg: #F9F5F0;
  --color-sand: #E8D5B0;
  --color-sand-light: #F2EAD8;
  --color-text: #2C2C2C;
  --color-text-light: #5A5A5A;
  --color-text-muted: #7A7A7A;
  --color-white: #FFFFFF;
  --color-green-light: #EAF2EF;
  --color-border: #DDD5C8;
  --color-footer-bg: #2A3D38;
  --color-footer-text: #C8D8D4;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --container-max: 1200px;
  --container-narrow: 800px;
  --transition: 0.22s ease;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

h5 {
  font-size: 1.05rem;
}

h6 {
  font-size: 0.95rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--fw-semibold);
}

em {
  font-style: italic;
}

section {
  display: block;
}

article {
  display: block;
}

main {
  display: block;
  padding-top: var(--header-height);
}

form {
  display: block;
}

input,
textarea,
select,
button {
  font-family: var(--font-body);
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

th {
  font-weight: var(--fw-semibold);
  background-color: var(--color-green-light);
  color: var(--color-text);
}

tr:last-child td {
  border-bottom: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-3xl);
}

.section--light {
  background-color: var(--color-bg);
}

.section--sand {
  background-color: var(--color-sand-light);
}

.section--green {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--green h1,
.section--green h2,
.section--green h3,
.section--green p {
  color: var(--color-white);
}

.section--cta {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--map {
  padding-block: 0;
  background-color: var(--color-bg);
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-intro--light {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.section-title--left {
  text-align: left;
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-subtitle--left {
  text-align: left;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.85);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.section-cta-center {
  text-align: center;
  margin-top: var(--space-2xl);
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn--secondary:hover {
  background-color: #b8966a;
  border-color: #b8966a;
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-green-light);
  color: var(--color-primary-dark);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--large {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  min-height: 52px;
}

.btn--small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  min-height: 36px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-lg);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-primary);
  background-color: var(--color-green-light);
}

.nav-item--dropdown {
  position: relative;
}

.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  transition: background-color var(--transition), color var(--transition);
}

.dropdown-link:hover {
  background-color: var(--color-green-light);
  color: var(--color-primary);
}

.header-cta {
  display: none;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  overflow-y: auto;
  z-index: 999;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  list-style: none;
}

.mobile-nav__link {
  display: block;
  padding: 0.85rem var(--space-md);
  font-size: 1.05rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background-color var(--transition), color var(--transition);
}

.mobile-nav__link:hover {
  background-color: var(--color-green-light);
  color: var(--color-primary);
}

.mobile-nav__cta {
  display: block;
  margin-top: var(--space-lg);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero--compact {
  min-height: 65vh;
}

.hero--short {
  min-height: 48vh;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,55,45,0.82) 0%, rgba(44,74,62,0.60) 60%, rgba(30,55,45,0.30) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-4xl) var(--space-3xl);
}

.hero__text {
  max-width: 680px;
}

.hero__label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  background-color: rgba(200,169,126,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200,169,126,0.35);
}

.hero__heading {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
}

.hero__subheading {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.page-hero--compact {
  min-height: 36vh;
}

.page-hero--short {
  min-height: 28vh;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero__content {
  max-width: 680px;
  padding-block: var(--space-3xl);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.page-hero__intro {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.trust-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-lg);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,124,111,0.25);
  white-space: nowrap;
}

.trust-bar__item--text {
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.features-grid--three {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.features-grid--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card--link {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.feature-card--link:hover {
  color: inherit;
}

.feature-card__icon {
  margin-bottom: var(--space-md);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.treatment-card {
  display: block;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.treatment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}

.treatment-card--static {
  pointer-events: none;
  cursor: default;
}

.treatment-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.treatment-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card__image {
  transform: scale(1.04);
}

.treatment-card__body {
  padding: var(--space-lg);
}

.treatment-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.treatment-card__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.treatment-card__cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: color var(--transition);
}

.treatment-card:hover .treatment-card__cta {
  color: var(--color-primary-dark);
}

.treatment-card__list {
  list-style: none;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.treatment-card__list li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.treatment-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.team-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.team-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__image {
  transform: scale(1.04);
}

.team-card__body {
  padding: var(--space-lg);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__details {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.team-card__specialities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.team-card__vergoeding {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-md);
  padding: 0.3rem 0.75rem;
  background-color: var(--color-green-light);
  border-radius: var(--radius-full);
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.badge--green {
  background-color: var(--color-green-light);
  color: var(--color-primary);
  border: 1px solid rgba(74,124,111,0.25);
}

.badge--orange {
  background-color: rgba(200,169,126,0.18);
  color: #8a6a3a;
  border: 1px solid rgba(200,169,126,0.4);
}

.badge--grey {
  background-color: #f0f0f0;
  color: var(--color-text-light);
  border: 1px solid #ddd;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,124,111,0.2);
}

.review-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #F5B731;
  font-size: 1.1rem;
}

.review-card__quote {
  font-size: 1.5rem;
  color: var(--color-secondary);
  line-height: 1;
}

.review-card__text {
  font-size: 0.98rem;
  color: var(--color-text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: auto;
}

.review-card__author {
  font-weight: var(--fw-semibold);
  font-size: 0.92rem;
  color: var(--color-text);
}

.review-card__source {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-split--reverse .content-split__media {
  order: -1;
}

.content-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.content-split__image--portrait {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.content-split__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.content-split__table {
  overflow-x: auto;
  margin-top: var(--space-md);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-layout--reverse .split-layout__image {
  order: -1;
}

.split-layout__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.split-layout__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.split-layout__logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-md);
}

.highlight-block {
  background-color: var(--color-green-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.highlight-block__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.highlight-block__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.highlight-block__image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.highlight-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.cta-block {
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-block--centered {
  text-align: center;
}

.cta-block__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.cta-block__body {
  padding: var(--space-2xl);
}

.cta-block__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-block__text {
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-xl);
  font-size: 1.02rem;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cta-block__image-wrap {
  overflow: hidden;
  min-height: 260px;
}

.cta-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-block__location {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  margin-bottom: 0;
}

.cta-section {
  background-color: var(--color-primary);
  padding-block: var(--space-3xl);
}

.cta-section__inner {
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.cta-section__text {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cta-section__content {
  max-width: 700px;
  margin-inline: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-info__label {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.contact-info__address {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-info__map-btn {
  margin-top: var(--space-sm);
}

.contact-info__note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.contact-form-wrap {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-block {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-block__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.contact-block__address {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.contact-block__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.contact-cta-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-cta-block__image-wrap {
  overflow: hidden;
  min-height: 220px;
}

.contact-cta-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta-block__info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-map__iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location-address {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-label {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74,124,111,0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.form-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 0.88rem;
}

.insurance-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}

.insurance-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.vergoeding-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: var(--space-lg);
}

.vergoeding-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.pricing-table {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
}

.pricing-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.85rem 1.25rem;
}

.pricing-table td {
  padding: 0.85rem 1.25rem;
}

.pricing-table tr:hover td {
  background-color: var(--color-green-light);
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pricing-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.table-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.table-notice {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.table-cta-text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

.table-link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  font-size: 0.92rem;
}

.hours-table {
  width: 100%;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: var(--fw-medium);
  color: var(--color-text);
  width: 50%;
}

.hours-table td:last-child {
  color: var(--color-text-light);
}

.openingstijden-table {
  width: 100%;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.openingstijden-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.therapist-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding-block: var(--space-2xl);
}

.therapist-profile--reverse .therapist-profile__media {
  order: -1;
}

.therapist-profile__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.therapist-profile__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.therapist-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.therapist-profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.therapist-profile__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.therapist-profile__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.therapist-profile__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.therapist-profile__role {
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.therapist-profile__intro {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.therapist-profile__text {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.therapist-profile__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.therapist-profile__meta-item {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,124,111,0.2);
}

.therapist-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.therapist-profile__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.therapist-profile__detail-block {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.therapist-profile__detail-title {
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.therapist-profile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.therapist-profile__list li {
  font-size: 0.92rem;
  color: var(--color-text-light);
  padding-left: 1.25rem;
  position: relative;
}

.therapist-profile__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.therapist-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.therapist-role {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.therapist-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-md);
}

.therapist-hours {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.therapist-hours__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.therapist-hours__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.therapist-hours__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.15rem;
}

.therapist-hours__role {
  font-size: 0.82rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.therapist-hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.therapist-hours__item:last-child {
  border-bottom: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.faq-sidebar {
  display: none;
}

.faq-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-sidebar__link {
  display: block;
  font-size: 0.92rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition);
}

.faq-sidebar__link:hover {
  background-color: var(--color-green-light);
  color: var(--color-primary);
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-group__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-sand);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  list-style: none;
  font-weight: var(--fw-semibold);
  font-size: 0.97rem;
  color: var(--color-text);
  transition: background-color var(--transition);
}

.faq-question:hover {
  background-color: var(--color-green-light);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: 0.97rem;
  color: var(--color-text);
  transition: background-color var(--transition);
}

.faq-item__question:hover {
  background-color: var(--color-green-light);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.faq-item__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.faq-more {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-top: var(--space-md);
}

.faq-footer {
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.faq-brands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.blog-card {
  display: block;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: inherit;
}

.blog-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.blog-featured__image-wrap {
  overflow: hidden;
  min-height: 280px;
}

.blog-featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.blog-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.blog-featured__excerpt {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.klacht-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.klacht-nav__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.klacht-nav__item:hover,
.klacht-nav__item.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.klacht-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,124,111,0.2);
}

.klacht-pill__icon {
  width: 14px;
  height: 14px;
}

.klacht-section {
  padding-block: var(--space-3xl);
}

.klacht-section--reverse .klacht-section__image-wrap {
  order: -1;
}

.klacht-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.klacht-section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.klacht-section__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.klacht-section__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.klacht-section__image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.klacht-section__image--portrait {
  aspect-ratio: 3/4;
}

.klacht-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.klachten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.klacht-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  list-style: none;
}

.klacht-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 1.5rem;
  position: relative;
}

.klacht-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.klacht-list li:last-child {
  border-bottom: none;
}

.treatment-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.treatment-feature:last-child {
  border-bottom: none;
}

.treatment-feature--reverse .treatment-feature__image-wrap {
  order: -1;
}

.treatment-feature__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.treatment-feature__image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}

.treatment-feature__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background-color: var(--color-green-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.treatment-feature__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.treatment-feature__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.treatment-feature__text {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.treatment-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.treatment-feature__list li {
  font-size: 0.93rem;
  color: var(--color-text-light);
  padding-left: 1.5rem;
  position: relative;
  padding-block: 0.2rem;
}

.treatment-feature__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.treatment-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item--large {
  grid-column: span 2;
}

.gallery-item__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

.gallery-item--large .gallery-item__image {
  height: 300px;
}

.gallery-item:hover .gallery-item__image {
  transform: scale(1.04);
}

.gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.rounded-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  counter-reset: steps;
  list-style: none;
}

.steps-list__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.steps-list__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.steps-list__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.steps-list__title {
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--color-text);
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step__content {
  flex: 1;
}

.step__title {
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.step__text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.check-list__item::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  margin-top: 2px;
}

.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.styled-list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  padding-left: 1.4rem;
  position: relative;
}

.styled-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.info-list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.info-list li:last-child {
  border-bottom: none;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.vergoeding-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.vergoeding-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.vergoeding-uitleg {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.75;
}

.vergoeding-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.vergoeding-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.vergoeding-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.vergoeding-step__title {
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.vergoeding-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.vergoeding-list li {
  font-size: 0.92rem;
  color: var(--color-text-light);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.65;
}

.vergoeding-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.vergoeding-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-lg);
}

.vergoeding-logo-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vergoeding-logo-card img {
  max-height: 48px;
  width: auto;
}

.vergoeding-disclaimer {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  font-style: italic;
  line-height: 1.6;
}

.vergoeding--ja {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.vergoeding--info {
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
}

.accreditatie-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.accreditation-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.legal-wrapper {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--space-3xl);
  padding-inline: var(--space-lg);
}

.legal-section {
  margin-bottom: var(--space-2xl);
}

.legal-section__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-section__subtitle {
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.legal-section__meta {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.legal-toc {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.legal-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.legal-toc__link {
  font-size: 0.92rem;
  color: var(--color-primary);
  text-decoration: underline;
  padding: 0.25rem 0;
  display: block;
  transition: color var(--transition);
}

.legal-toc__link:hover {
  color: var(--color-primary-dark);
}

.legal-list {
  list-style: disc;
  padding-left: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.legal-list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.legal-divider {
  height: 1px;
  background-color: var(--color-border);
  margin-block: var(--space-2xl);
  border: none;
}

.legal-contact-block {
  background-color: var(--color-green-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
}

.legal-contact-block__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.legal-contact-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--color-md);
  margin-top: var(--space-md);
}

.text-link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: underline;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.text-link:hover {
  color: var(--color-primary-dark);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-top: var(--space-3xl);
}

.footer-inner {
  padding-bottom: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-col__title,
.footer-heading,
.footer-nav__heading,
.footer-nav__title {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.footer-logo {
  max-height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-link {
  display: inline-block;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(200,216,212,0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-address {
  font-size: 0.92rem;
  color: var(--color-footer-text);
  line-height: 1.75;
  margin-bottom: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link {
  font-size: 0.92rem;
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--color-secondary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  list-style: none;
}

.footer-nav__link {
  font-size: 0.92rem;
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.6;
}

.footer-nav__link:hover,
.footer-nav__link--active {
  color: var(--color-secondary);
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-trust__text {
  font-size: 0.82rem;
  color: rgba(200,216,212,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
}

.footer-trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.footer-trust__logo {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-accreditaties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  padding-block: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.footer-accreditation-logo {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.footer-logo-accreditation {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.footer-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-products__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  color: rgba(200,216,212,0.6);
}

.footer-product-logo {
  max-height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.footer-sbb {
  font-size: 0.82rem;
  color: rgba(200,216,212,0.7);
  font-weight: var(--fw-medium);
}

.footer-cta {
  background-color: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(200,216,212,0.65);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-lg);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.footer-bottom__copy {
  font-size: 0.85rem;
  color: rgba(200,216,212,0.6);
}

.footer-bottom__text {
  font-size: 0.85rem;
  color: rgba(200,216,212,0.6);
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-bottom__link {
  font-size: 0.82rem;
  color: rgba(200,216,212,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom__link:hover {
  color: var(--color-secondary);
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid--three {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (min-width: 640px) {
  .treatment-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .blog-featured {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .content-split {
    grid-template-columns: 1fr 1fr;
  }

  .content-split--reverse .content-split__media {
    order: 0;
  }

  .split-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split-layout--reverse .split-layout__image {
    order: 0;
  }

  .treatment-feature {
    grid-template-columns: 1fr 1fr;
  }

  .treatment-feature--reverse .treatment-feature__image-wrap {
    order: 0;
  }

  .klacht-section__inner {
    grid-template-columns: 1fr 1fr;
  }

  .klacht-section--reverse .klacht-section__image-wrap {
    order: 0;
  }

  .highlight-block {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cta-block {
    grid-template-columns: 1fr 1fr;
  }

  .vergoeding-layout {
    grid-template-columns: 1fr 1fr;
  }

  .therapist-profile {
    grid-template-columns: 1fr 2fr;
  }

  .therapist-profile--reverse {
    grid-template-columns: 2fr 1fr;
  }

  .therapist-profile--reverse .therapist-profile__media {
    order: 1;
  }

  .faq-layout {
    grid-template-columns: 260px 1fr;
  }

  .faq-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
  }

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

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid--two {
    grid-template-columns: 1fr 1fr;
  }

  .treatment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .klachten-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .content-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .therapist-profile {
    grid-template-columns: 300px 1fr;
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
