@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --navy: #253f50;
  --navy-deep: #1b303e;
  --slate: #516573;
  --mist: #dde1e4;
  --teal: #186f8b;
  --cyan: #37abaf;
  --cyan-light: #b7e1e2;
  --sand: #f3e0c6;
  --paper: #ffffff;
  --paper-2: #f7f8f8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(38px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.4vw, 42px); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}

.bar {
  background: var(--navy);
  color: #cfd8de;
  font-size: 13px;
  font-weight: 500;
}
.bar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.bar a { text-decoration: none; }
.bar a:hover { color: #fff; }
.bar span { opacity: 0.4; margin: 0 9px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mist);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px 24px;
  padding: 14px 0;
}
.logo {
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-header nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
  font-weight: 500;
}
.site-header nav a { text-decoration: none; color: var(--slate); }
.site-header nav a:hover { color: var(--navy); }

.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
}
.nav-dropdown__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease, margin-top 0.2s ease;
}
.nav-dropdown.is-open > .nav-dropdown__toggle > .nav-dropdown__chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.nav-dropdown__submenu.is-open > .nav-dropdown__submenu-toggle > .nav-dropdown__chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.nav-dropdown__toggle:hover,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--navy);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(27, 48, 62, 0.12);
  z-index: 30;
}
.nav-dropdown__menu li + li {
  border-top: 1px solid var(--mist);
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}
.nav-dropdown__submenu {
  position: relative;
}
.nav-dropdown__submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  background: none;
  padding: 10px 16px;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--slate);
  cursor: pointer;
  text-align: left;
}
.nav-dropdown__submenu-toggle:hover,
.nav-dropdown__submenu.is-open .nav-dropdown__submenu-toggle {
  color: var(--navy);
}
.nav-dropdown__submenu-menu {
  position: absolute;
  top: -9px;
  left: calc(100% - 12px);
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(27, 48, 62, 0.12);
  z-index: 31;
}
.nav-dropdown__submenu-menu li + li {
  border-top: 1px solid var(--mist);
}
.nav-dropdown__submenu-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--mist);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
}
.btn:hover { background: var(--navy-deep); }
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--mist);
}
.btn.ghost:hover { border-color: var(--navy); background: transparent; }
.btn.light { background: #fff; color: var(--navy); }
.btn.light:hover { background: var(--paper-2); }
.btn.cyan { background: var(--cyan); color: #fff; }
.btn.cyan:hover { background: #2c969a; }
.btn.sm { padding: 8px 14px; font-size: 13px; }

.hero { padding: 56px 0 32px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
h1 span { color: var(--slate); }
.lede {
  font-size: 18px;
  color: var(--slate);
  max-width: 40ch;
  margin: 20px 0 28px;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  margin-left: 6px;
  text-decoration: none;
}

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.rating {
  position: absolute;
  left: -20px;
  bottom: 26px;
  background: #fff;
  border: 1px solid var(--mist);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  padding: 14px 18px;
  width: 250px;
}
.rating strong { display: block; font-size: 24px; font-weight: 800; line-height: 1.1; }
.rating span { font-size: 13px; color: var(--slate); }

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  margin-top: 44px;
}
.proof div { padding: 22px 0; }
.proof div + div { border-left: 1px solid var(--mist); padding-left: 26px; }
.proof b { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.proof span { font-size: 13.5px; color: var(--slate); }

section { padding: 76px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p { margin: 0; max-width: 40ch; color: var(--slate); }

.clinics { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.clinic {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.clinic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 63, 80, 0.05) 0%, rgba(27, 48, 62, 0.55) 45%, rgba(27, 48, 62, 0.95) 100%);
}
.clinic > * { position: relative; }
.clinic.kew { background-image: url("../img/clinic-kew.webp"); }
.clinic.park { background-image: url("../img/clinic-gunnersbury.webp"); }
.clinic.city { background-image: url("../img/clinic-moorgate.webp"); }
.clinic small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-light);
}
.clinic h3 { font-size: 28px; margin: 6px 0 8px; }
.clinic p { margin: 0; font-size: 14.5px; color: #d5dde3; }
.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.treat {
  border: 1px solid var(--mist);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
}
.treat:hover { border-color: var(--cyan); }
.treat img { width: 100%; aspect-ratio: 12 / 5; object-fit: cover; }
.treat-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.treat h3 { font-size: 21px; margin-bottom: 8px; }
.treat p { margin: 0; font-size: 14.5px; color: var(--slate); }
.treat .from {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.feature {
  margin-top: 14px;
  border-radius: 10px;
  min-height: 340px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(27, 48, 62, 0.95) 0%, rgba(27, 48, 62, 0.85) 45%, rgba(27, 48, 62, 0.3) 100%),
    url("../img/studio-kew.webp") center/cover;
}
.feature h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }
.feature p { margin: 0 0 20px; color: #d5dde3; max-width: 52ch; font-size: 15px; }

.others { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.other {
  border-top: 3px solid var(--cyan);
  background: var(--paper-2);
  border-radius: 0 0 10px 10px;
  padding: 24px;
  text-decoration: none;
}
.other h3 { font-size: 19px; margin-bottom: 8px; }
.other p { margin: 0; font-size: 14.5px; color: var(--slate); }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { text-decoration: none; }
.member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: var(--paper-2);
}
.member h3 { font-size: 18px; margin: 14px 0 2px; }
.member p { margin: 0; font-size: 13.5px; color: var(--slate); }

.pricelist { border-top: 1px solid var(--mist); }
.pricelist .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mist);
}
.pricelist .row b { font-weight: 600; font-size: 15px; }
.pricelist .row small { display: block; color: var(--slate); font-size: 13px; font-weight: 500; }
.pricelist .row span { font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.pricelist .note { margin: 14px 0 0; font-size: 13.5px; color: var(--slate); }

.band-sand { background: var(--sand); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.split p.intro { color: var(--slate); max-width: 40ch; margin: 16px 0 0; }
.band-sand .split p.intro { color: #5c503f; }
.band-sand .eyebrow { color: #8a6a35; }

ol.steps { list-style: none; margin: 0; padding: 0; }
ol.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(37, 63, 80, 0.16);
}
.num { font-size: 22px; font-weight: 800; color: var(--teal); letter-spacing: -0.02em; }
ol.steps h3 { font-size: 17px; margin-bottom: 4px; }
ol.steps p { margin: 0; color: #5c503f; font-size: 14.5px; }

.reviews { background: var(--paper-2); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 24px;
}
.review p { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.45; }
.review cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}
.review-score {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.cta-band {
  background: var(--navy);
  color: #e6edf1;
  padding: 56px 0;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { margin: 10px 0 0; color: #c3ced6; max-width: 42ch; }

.page-hero { padding: 48px 0 12px; }
.page-hero .lede { margin-bottom: 0; }

.insurers { padding: 30px 0; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.insurers .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.insurers p { margin: 0; font-size: 14px; color: var(--slate); max-width: 30ch; }
.logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93a1ac;
}

.site-footer { background: var(--navy-deep); color: #c3ced6; padding: 64px 0 28px; font-size: 15px; }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  margin-bottom: 36px;
}
.site-footer h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer .brand {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.site-footer__intro {
  margin: 0;
  max-width: 32ch;
  color: #a8b5bf;
  line-height: 1.55;
}
.site-footer a { color: #c3ced6; text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; line-height: 1.45; }
.site-footer li:last-child { margin-bottom: 0; }
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: #8b9aa6;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .bar { display: none; }
  .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo tools"
      "nav nav";
    align-items: center;
    column-gap: 16px;
    row-gap: 0;
  }
  .logo { grid-area: logo; }
  .header-tools { grid-area: tools; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 4px 0 10px;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
  }
  .site-header nav.is-open { display: flex; }
  .site-header nav a,
  .site-header nav .nav-dropdown__toggle,
  .site-header nav .nav-dropdown__submenu-toggle {
    padding: 12px 0;
    border-bottom: 1px solid var(--mist);
    width: 100%;

    @media (max-width: 1100px) {
      justify-content: space-between;
      padding-right: 8px;
    }
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-dropdown__menu[hidden] {
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }
  .nav-dropdown__menu li + li {
    border-top: 0;
  }
  .nav-dropdown__menu a {
    padding: 10px 0 10px 16px;
    font-size: 14px;
  }
  .nav-dropdown__submenu {
    width: 100%;
  }
  .nav-dropdown__submenu-toggle {
    padding: 10px 0 10px 16px;
    font-size: 14px;
  }
  .nav-dropdown__submenu-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 4px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-dropdown__submenu-menu[hidden] {
    display: none;
  }
  .nav-dropdown__submenu.is-open .nav-dropdown__submenu-menu {
    display: block;
  }
  .nav-dropdown__submenu-menu li + li {
    border-top: 0;
  }
  .nav-dropdown__submenu-menu a {
    padding: 8px 0 8px 32px;
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .hero-grid, .clinics, .treatments, .others, .split, .section-head, .review-grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .feature, .clinic { min-height: 300px; }
  .feature { padding: 24px; }
  .hero-photo img { height: 320px; }
  .rating { left: 16px; }
  .proof { grid-template-columns: 1fr 1fr; }
  .proof div + div { border-left: 0; padding-left: 0; }
}

/* CMS page-builder blocks */
.qsp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.qsp-button:hover { background: var(--navy-deep); }
.qsp-button--secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--mist);
}
.qsp-button--secondary:hover { background: #fff; border-color: var(--navy); }
.qsp-button--light { color: var(--navy); background: #fff; }
.qsp-button--light:hover { color: var(--navy); background: var(--paper-2); }
.qsp-button--accent { background: var(--navy); }

.qsp-section-header,
.qsp-reviews__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.qsp-section-header__eyebrow,
.qsp-hero__eyebrow,
.qsp-intro__eyebrow,
.qsp-feature-cta__eyebrow,
.qsp-process__eyebrow,
.qsp-reviews__eyebrow,
.qsp-prices__eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.qsp-process__eyebrow { color: #135f74; }
.qsp-section-header__text { max-width: 40ch; margin: 0; color: var(--slate); }

.qsp-hero { padding: 56px 0 32px; }
.qsp-hero__inner,
.qsp-hero__proof,
.qsp-intro__inner,
.qsp-clinics__inner,
.qsp-services__inner,
.qsp-blog__inner,
.qsp-article__inner,
.qsp-team,
.qsp-process,
.qsp-reviews,
.qsp-prices,
.qsp-insurers,
.qsp-feature-cta,
.qsp-booking-cta,
.qsp-faq {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}
.qsp-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.qsp-hero__heading { font-size: clamp(38px, 5.4vw, 64px); }
.qsp-hero__heading-highlight { display: block; color: var(--slate); }
.qsp-hero__text { max-width: 40ch; margin: 20px 0 28px; color: var(--slate); font-size: 18px; }
.qsp-hero__actions,
.qsp-team__actions,
.qsp-clinic-card__actions,
.qsp-booking-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.qsp-hero__phone { color: var(--slate); font-size: 15px; font-weight: 600; text-decoration: none; }
.qsp-hero__media { margin: 0; }
.qsp-hero__image { width: 100%; height: 500px; border-radius: 10px; object-fit: cover; }
.qsp-hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.qsp-hero__proof-item { padding: 22px 0; }
.qsp-hero__proof-item + .qsp-hero__proof-item { padding-left: 26px; border-left: 1px solid var(--mist); }
.qsp-hero__proof-value { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.qsp-hero__proof-label { margin: 0; color: var(--slate); font-size: 13.5px; }

.qsp-intro,
.qsp-clinics,
.qsp-services,
.qsp-team,
.qsp-process,
.qsp-reviews,
.qsp-prices { padding: 76px 0; }

/*
    De page builder bepaalt de blokvolgorde. Blokken die hun bovenmarge
    weglaten omdat ze normaal op een ander blok volgen, hebben die wel nodig
    zodra ze als eerste blok onder de header staan.
*/
.qsp-clinics:first-child,
.qsp-team:first-child { padding-top: 56px; }

.qsp-intro__inner,
.qsp-process,
.qsp-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.qsp-intro__text,
.qsp-process__text,
.qsp-prices__text { color: var(--slate); }
.qsp-intro__text > :first-child { margin-top: 0; }

.qsp-clinics { padding-top: 0; }
.qsp-clinics__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.qsp-clinic-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
}
.qsp-clinic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 5%, rgba(27,48,62,.25) 38%, rgba(27,48,62,.96) 100%);
}
.qsp-clinic-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.qsp-clinic-card__body {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
}
.qsp-clinic-card__area {
  margin: 0;
  color: var(--cyan-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.qsp-clinic-card__heading { margin: 6px 0 8px; font-size: 28px; }
.qsp-clinic-card__address { color: #fff; font-size: 14px; font-style: normal; }
.qsp-clinic-card__text { margin: 8px 0 0; color: #d5dde3; font-size: 14px; }
.qsp-clinic-card__actions { margin-top: 16px; }
.qsp-clinic-card__actions .qsp-button { padding: 8px 13px; font-size: 13px; }

/* De kaarten staan op een donkere foto, dus de knoppen uit de lichte set
   zouden navy-op-donker worden en onleesbaar zijn. */
.qsp-clinic-card__actions .qsp-button {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}
.qsp-clinic-card__actions .qsp-button:hover { background: var(--cyan-light); border-color: var(--cyan-light); }
.qsp-clinic-card__actions .qsp-button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .65);
}
.qsp-clinic-card__actions .qsp-button--secondary:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.qsp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.qsp-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: 10px;
  background: var(--paper-2);
}
.qsp-service-card__image { width: 100%; aspect-ratio: 12/5; object-fit: cover; }
.qsp-service-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 24px 24px; }
.qsp-service-card__heading { margin-bottom: 8px; font-size: 21px; }
.qsp-service-card__text { margin: 0; color: var(--slate); font-size: 14.5px; }
.qsp-service-card__price { margin: auto 0 0; padding-top: 16px; color: var(--teal); font-size: 13px; font-weight: 700; }
.qsp-service-card__link { margin-top: 8px; font-size: 13px; font-weight: 700; }

.qsp-feature-cta {
  min-height: 340px;
  /* Losstaande kaart zonder sectiepadding: zonder deze marge sluit hij
     direct aan op het gekleurde vlak van het volgende blok. */
  margin-bottom: 76px;
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, rgba(27,48,62,.96), rgba(27,48,62,.75)), url("/img/studio-kew.webp") center/cover;
}
.qsp-feature-cta__heading { max-width: 20ch; }
.qsp-feature-cta__text { max-width: 54ch; margin: 12px 0 22px; color: #d5dde3; }
.qsp-feature-cta__text p { margin: 0; }

.qsp-team { padding-top: 0; }
.qsp-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.qsp-team-member__image { width: 100%; aspect-ratio: 1; border-radius: 10px; object-fit: cover; }
.qsp-team-member__name { margin: 14px 0 2px; font-size: 18px; }
.qsp-team-member__link { text-decoration: none; }
.qsp-team-member__role { margin: 0; color: var(--slate); font-size: 13.5px; }
.qsp-team-member__credentials { margin: 6px 0 0; color: var(--teal); font-size: 12px; font-weight: 700; line-height: 1.45; }
.qsp-team-member__bio { margin: 10px 0 0; color: var(--slate); font-size: 13px; line-height: 1.55; }
.qsp-team__actions { margin-top: 28px; }

/* 100vw telt de scrollbar mee en 100% niet, dus met vw zouden deze
   full-bleed secties hun inhoud een paar pixels naast de gewone
   containers zetten. */
.qsp-process { width: auto; max-width: none; padding-inline: max(20px, calc((100% - 1140px) / 2)); background: var(--sand); }
.qsp-process__steps { margin: 0; padding: 0; list-style: none; }
.qsp-process__step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid rgba(37,63,80,.16); }
.qsp-process__number { color: var(--teal); font-size: 22px; font-weight: 800; }
.qsp-process__step-heading { margin-bottom: 4px; font-size: 17px; }
.qsp-process__step-text { margin: 0; color: #5c503f; font-size: 14.5px; }

.qsp-reviews { width: auto; max-width: none; padding-inline: max(20px, calc((100% - 1140px) / 2)); background: var(--paper-2); }
.qsp-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.qsp-review { margin: 0; padding: 24px; border: 1px solid var(--mist); border-radius: 10px; background: #fff; }
.qsp-review__quote { margin: 0; font-size: 15px; font-weight: 600; }
.qsp-review__quote p { margin: 0; }
.qsp-review__author { margin-top: 16px; color: var(--teal); font-size: 13px; font-weight: 600; }
.qsp-review__author cite { font-style: normal; }
.qsp-review__author span::before { content: " · "; }

.qsp-prices__list-heading { padding-bottom: 8px; }
.qsp-prices__heading { margin-bottom: 16px; }
.qsp-prices__items { margin: 0; border-top: 1px solid var(--mist); }
.qsp-prices__item { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--mist); }
.qsp-prices__detail { display: block; color: var(--slate); font-weight: 500; }
.qsp-prices__price { margin: 0; font-weight: 800; white-space: nowrap; }
.qsp-prices__note { color: var(--slate); font-size: 13.5px; }

.qsp-insurers { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 30px; }
.qsp-insurers__text { max-width: 30ch; margin: 0; color: var(--slate); font-size: 14px; }
.qsp-insurers__list { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none; }
.qsp-insurers__name { color: var(--slate); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.qsp-insurers__logo { max-height: 30px; width: auto; }

.qsp-booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 56px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}
.qsp-booking-cta__text { max-width: 44ch; margin: 10px 0 0; color: #c3ced6; }

.qsp-blog { padding: 56px 0 76px; }
.qsp-blog__header { max-width: 46ch; margin-bottom: 40px; }
.qsp-blog__heading { font-size: clamp(32px, 4.2vw, 48px); }
.qsp-blog__intro { margin-top: 16px; color: var(--slate); font-size: 17px; }
.qsp-blog__intro p { margin: 0; }
.qsp-blog__intro p + p { margin-top: 6px; }
.qsp-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.qsp-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: 10px;
  background: var(--paper-2);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
a.qsp-blog-card {
  cursor: pointer;
  text-decoration: none;
}
a.qsp-blog-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 32px rgba(27, 48, 62, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}
.qsp-blog-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.qsp-blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 24px 24px; }
.qsp-blog-card__date,
.qsp-blog-card__text,
.qsp-blog-card__link {
  text-decoration: none;
}
.qsp-blog-card__date { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.qsp-blog-card__heading {
  margin: 10px 0 0;
  font-size: 20px;
  text-decoration: none;
}
a.qsp-blog-card:hover .qsp-blog-card__date,
a.qsp-blog-card:hover .qsp-blog-card__text,
a.qsp-blog-card:hover .qsp-blog-card__link,
a.qsp-blog-card:hover .qsp-blog-card__heading {
  text-decoration: none;
}
.qsp-blog-card__text { margin: 10px 0 0; color: var(--slate); font-size: 14.5px; }
.qsp-blog-card__link {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
a.qsp-blog-card:hover .qsp-blog-card__link {
  color: var(--cyan);
}

.qsp-article { padding: 56px 0 76px; }
.qsp-article__header { max-width: 62ch; }
.qsp-article__date { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.qsp-article__author { margin: 8px 0 0; color: var(--slate); font-size: 14px; }
.qsp-article__heading { margin: 14px 0 0; font-size: clamp(30px, 4vw, 44px); }
.qsp-article__intro { margin: 18px 0 0; color: var(--slate); font-size: 18px; }
.qsp-article__image { width: 100%; max-height: 460px; margin-top: 34px; border-radius: 10px; object-fit: cover; }
.qsp-article__body { max-width: 68ch; margin-top: 34px; color: var(--slate); font-size: 16.5px; }
.qsp-article__body > :first-child { margin-top: 0; }
.qsp-article__body h2 { margin: 34px 0 10px; color: var(--navy); font-size: 24px; }
.qsp-article__body h3 { margin: 26px 0 8px; color: var(--navy); font-size: 19px; }
.qsp-article__body p { margin: 0 0 16px; }
.qsp-article__body ul,
.qsp-article__body ol { margin: 0 0 16px; padding-left: 22px; }
.qsp-article__body li { margin-bottom: 6px; }
.qsp-article__body img { width: 100%; margin: 24px 0; border-radius: 10px; }
.qsp-article__disclaimer { max-width: 68ch; margin: 34px 0 0; padding-left: 16px; border-left: 3px solid var(--cyan); color: var(--slate); font-size: 14px; }
.qsp-article__cta { max-width: 68ch; margin-top: 42px; padding: 28px; border-radius: 10px; background: var(--cyan-light); }
.qsp-article__cta h2 { margin: 0; font-size: 24px; }
.qsp-article__cta p { margin: 10px 0 0; color: var(--slate); }
.qsp-article__cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.qsp-faq { padding: 64px 0; }
.qsp-faq__items { max-width: 780px; border-top: 1px solid var(--mist); }
.qsp-faq__item { border-bottom: 1px solid var(--mist); }
.qsp-faq__question {
  position: relative;
  padding: 20px 40px 20px 0;
  color: var(--navy);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.qsp-faq__question::-webkit-details-marker { display: none; }
.qsp-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 9px;
  height: 9px;
  margin-top: -7px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.qsp-faq__item[open] .qsp-faq__question::after { margin-top: -2px; transform: rotate(225deg); }
.qsp-faq__answer { padding: 0 40px 20px 0; color: var(--slate); }
.qsp-faq__answer > :first-child { margin-top: 0; }
.qsp-faq__answer > :last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .qsp-section-header,
  .qsp-reviews__header,
  .qsp-hero__inner,
  .qsp-intro__inner,
  .qsp-clinics__grid,
  .qsp-services__grid,
  .qsp-process,
  .qsp-prices,
  .qsp-reviews__grid { grid-template-columns: 1fr; }
  .qsp-team__grid,
  .qsp-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .qsp-hero__image { height: 320px; }
  .qsp-hero__proof { grid-template-columns: repeat(2, 1fr); }
  .qsp-hero__proof-item + .qsp-hero__proof-item { padding-left: 0; border-left: 0; }
  .qsp-clinic-card { min-height: 380px; }
  .qsp-feature-cta { padding: 24px; }
  .qsp-insurers,
  .qsp-booking-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .qsp-blog__grid { grid-template-columns: 1fr; }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }
  .site-footer {
    padding: 48px 0 24px;
  }
  .copy {
    flex-direction: column;
    align-items: flex-start;
  }
}
