:root {
  --navy: #32346f;
  --blue: #244b8f;
  --coral: #f4828d;
  --coral-dark: #d85363;
  --orange: #f47c20;
  --orange-dark: #df6816;
  --cream: #fff7e7;
  --mint: #dcece3;
  --yellow: #ffd987;
  --ink: #172045;
  --muted: #65708d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(42, 45, 96, 0.16);
  --shadow-card: 0 16px 34px rgba(50, 52, 111, 0.1);
  --shadow-card-soft: 0 12px 28px rgba(50, 52, 111, 0.07);
  --border-subtle: rgba(50, 52, 111, 0.1);
  --radius-card: 24px;
  --radius-card-compact: 8px;
  --page-hero-bg:
    radial-gradient(circle at 84% 16%, rgba(255, 217, 135, 0.35) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--cream), var(--mint));
  /* Section subtitles: use .eyebrow everywhere for a consistent small label. */
  --eyebrow-bg: rgba(244, 124, 32, 0.12);
  --eyebrow-color: var(--orange-dark);
  --eyebrow-size: 0.88rem;
  --eyebrow-padding: 8px 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", Arial, sans-serif;
}

body.nav-is-open {
  overflow: hidden;
}

body.cookie-consent-is-open {
  overflow: hidden;
}

body.nav-is-open .site-header {
  z-index: 220;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(50, 52, 111, 0.08);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar__inner,
.navbar {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
}

.topbar__link-optional {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.topbar__link-optional:hover {
  color: var(--yellow);
}

.topbar__vacancies {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__vacancies span {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #d92222;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.topbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__social {
  display: flex;
  gap: 10px;
}

.topbar__social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--coral);
  transition: transform 180ms ease, background 180ms ease;
}

.topbar__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.topbar__social a:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--navy);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 21;
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--white);
}

.brand {
  width: 250px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a,
.nav-dropdown__button {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after,
.nav-dropdown__button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .is-active::after,
.nav-dropdown:hover .nav-dropdown__button::after,
.nav-dropdown.is-open .nav-dropdown__button::after,
.nav-dropdown__button:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 43px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown__button span {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-top: -2px;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__button span,
.nav-dropdown.is-open .nav-dropdown__button span {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  padding: 18px 10px 10px;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown__menu::before {
  position: absolute;
  inset: 8px 0 0;
  z-index: -1;
  content: "";
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  position: relative;
  display: block;
  padding: 11px 12px 11px 16px;
  border-radius: 10px;
  color: var(--navy);
  text-transform: none;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-dropdown__menu a::after {
  position: absolute;
  top: 11px;
  right: auto;
  bottom: 11px;
  left: 6px;
  width: 3px;
  height: auto;
  display: block;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown__menu a:hover {
  background: rgba(244, 130, 141, 0.1);
  color: var(--navy);
  transform: translateX(2px);
}

.nav-dropdown__menu a:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.nav-dropdown__menu a.is-active {
  background: rgba(50, 52, 111, 0.08);
  color: var(--navy);
}

.nav-dropdown__menu a.is-active::after {
  opacity: 1;
  background: var(--navy);
  transform: scaleY(1);
}

.appointment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(244, 124, 32, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.appointment-link:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 16px 30px rgba(244, 124, 32, 0.36);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 30px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1fb85a;
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.42);
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(23, 32, 69, 0.5);
  backdrop-filter: blur(3px);
  pointer-events: auto;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent__panel {
  position: relative;
  box-sizing: border-box;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #32346f;
  box-shadow: 0 24px 70px rgba(28, 30, 72, 0.32);
  pointer-events: auto;
}

.cookie-consent__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cookie-consent__copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cookie-consent__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cookie-consent__copy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.cookie-consent__copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.55;
}

.cookie-consent__preferences {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-consent__preferences[hidden] {
  display: none;
}

.cookie-consent__preferences label {
  display: flex;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.45;
}

.cookie-consent__preferences input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--coral);
}

.cookie-consent__preferences input:disabled {
  accent-color: var(--white);
  opacity: 0.85;
}

.cookie-consent__preferences strong {
  display: block;
  color: var(--white);
}

.cookie-consent__actions {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: stretch;
  gap: 8px;
  align-items: center;
  padding-bottom: 4px;
}

.cookie-consent__actions .btn {
  min-width: 0;
  min-height: 46px;
  border: 0;
  padding-inline: 18px;
  white-space: nowrap;
}

.cookie-consent__actions .btn[hidden] {
  display: none;
}

.cookie-consent.has-preferences .cookie-consent__actions {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
}

.cookie-consent__primary {
  grid-column: 1 / -1;
  min-height: 62px;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  width: 100%;
  font-size: 1.04rem;
}

.cookie-consent.has-preferences .cookie-consent__primary {
  grid-column: auto;
  order: 3;
}

.cookie-consent.has-preferences [data-cookie-necessary] {
  order: 1;
}

.cookie-consent.has-preferences [data-cookie-save] {
  order: 2;
}

.cookie-consent__primary small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.cookie-consent__actions [data-cookie-necessary],
.cookie-consent__actions [data-cookie-customize],
.cookie-consent__actions [data-cookie-save] {
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.cookie-consent__actions [data-cookie-necessary]:hover,
.cookie-consent__actions [data-cookie-customize]:hover,
.cookie-consent__actions [data-cookie-save]:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: #f5f5fb;
  color: var(--navy);
}

.cookie-consent__actions [data-cookie-accept-all] {
  border: 0;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(244, 124, 32, 0.28);
}

.cookie-consent__actions [data-cookie-accept-all]:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(244, 124, 32, 0.34);
}

.cookie-settings-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 79;
  display: none;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(50, 52, 111, 0.2);
  cursor: pointer;
}

.cookie-settings-button.is-visible {
  display: inline-flex;
  align-items: center;
}

.cookie-settings-button:hover {
  background: #242653;
}

@media (max-width: 760px) {
  .btn,
  .appointment-link,
  .insurance-strip a {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .cookie-consent {
    padding: 12px;
    align-items: center;
  }

  .cookie-consent__panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    gap: 16px;
    padding: 18px 18px 20px;
  }

  .cookie-consent__close {
    top: 10px;
    right: 10px;
  }

  .cookie-consent__copy h2 {
    font-size: 1.42rem;
  }

  .cookie-consent__copy p:not(.eyebrow) {
    font-size: 0.91rem;
    line-height: 1.45;
  }

  .cookie-consent__preferences {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    padding-bottom: 0;
  }

  .cookie-consent.has-preferences .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions .btn {
    width: 100%;
    white-space: normal;
  }

  .cookie-consent__primary {
    min-height: 58px;
  }

  .cookie-settings-button {
    left: 12px;
    bottom: 12px;
  }
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(50, 52, 111, 0.16);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  grid-area: 1 / 1;
  display: block;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-open {
  border-color: rgba(50, 52, 111, 0.2);
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(50, 52, 111, 0.14);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links__appointment {
  display: none;
}

.nav-links__mobile-only {
  display: none;
}

.nav-links__mobile-logo {
  display: none;
}

.nav-links__mobile-phone,
.nav-links__mobile-social {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  overflow: visible;
  background: linear-gradient(115deg, rgba(255, 247, 231, 0.98), rgba(220, 236, 227, 0.94));
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 217, 135, 0.38) 0 7%, transparent 8%),
    radial-gradient(circle at 92% 16%, rgba(244, 130, 141, 0.22) 0 8%, transparent 9%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  grid-template-areas: "content video";
  align-items: center;
  gap: 44px;
  padding: 86px 0 116px;
}

.hero__content {
  grid-area: content;
  max-width: 650px;
  color: var(--navy);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  justify-self: start;
  margin: 0 0 16px;
  padding: var(--eyebrow-padding);
  border-radius: 999px;
  background: var(--eyebrow-bg);
  color: var(--eyebrow-color);
  font-size: var(--eyebrow-size);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  padding: 0 16px 7px;
  border-radius: 12px;
  background: var(--coral);
}

.hero h1 .hero-title__desktop,
.hero h1 .hero-title__mobile {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.hero h1 .hero-title__mobile {
  display: none;
}

.hero__text {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: 1.14rem;
  line-height: 1.7;
  font-weight: 700;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(244, 124, 32, 0.35);
}

.btn--primary:hover {
  background: var(--orange-dark);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.btn--soft {
  border: 2px solid rgba(50, 52, 111, 0.16);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(50, 52, 111, 0.08);
}

.btn--soft:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero-scene {
  position: relative;
  z-index: 4;
  min-height: 580px;
}

.hero-scene--video {
  grid-area: video;
  display: flex;
  align-items: center;
}

.hero-video {
  position: relative;
  width: 100%;
  margin: 0;
}

.hero-video::before {
  position: absolute;
  top: -24px;
  right: -18px;
  width: 112px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(244, 130, 141, 0.38);
}

.hero-video__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 38px 38px 96px 38px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-video__frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: var(--navy);
}

.hero-video figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 54px);
  margin: -20px auto 0;
  display: grid;
  gap: 2px;
  padding: 17px 22px 18px;
  border-radius: 18px 18px 36px 18px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(50, 52, 111, 0.18);
}

.hero-video__label {
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-video figcaption strong {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.1;
}

.hero-video figcaption > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.photo-stack,
.metric-card {
  position: absolute;
  transform:
    translate3d(var(--base-x, 0), var(--base-y, 0), 0)
    translate3d(var(--move-x, 0), var(--move-y, 0), 0);
  transition: transform 240ms ease-out;
}

.photo-stack {
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.photo-stack::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 2px dashed rgba(244, 130, 141, 0.7);
  border-radius: 30px 30px 94px 30px;
  pointer-events: none;
}

.photo-stack--main {
  right: 0;
  top: 16px;
  width: min(500px, 84%);
  aspect-ratio: 0.82;
  border-radius: 42px 42px 120px 42px;
}

.photo-stack--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms ease;
}

.photo-stack--main.is-changing img {
  opacity: 0.25;
  transform: scale(1.04);
}

.metric-card {
  right: 16px;
  bottom: 68px;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.metric-card strong {
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-wave {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 160px;
  color: var(--cream);
}

.hero-wave path:first-child {
  fill: currentColor;
}

.hero-wave__line {
  fill: none;
  stroke: var(--white);
  stroke-width: 7;
  stroke-linecap: round;
  opacity: 0.9;
}

.about-therapy {
  padding: 92px 0 34px;
  background: var(--cream);
}

.about-therapy__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.about-therapy__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  border: 10px solid var(--white);
  border-radius: 34px 34px 100px 34px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.about-therapy__image::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 2px dashed rgba(244, 130, 141, 0.55);
  border-radius: 24px 24px 82px 24px;
  pointer-events: none;
}

.about-therapy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 420ms ease;
}

.about-therapy__image.is-changing img {
  opacity: 0.25;
  transform: scale(1.04);
}

.about-therapy__content {
  max-width: 620px;
}

.about-therapy__content h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.about-therapy__content p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.about-therapy__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.about-therapy__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.about-therapy__list li::before {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  content: "✓";
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.82rem;
}

.insurance-strip {
  padding: 0 0 28px;
  background: var(--cream);
}

.insurance-strip__inner {
  width: min(980px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(50, 52, 111, 0.1);
  color: var(--navy);
  text-align: center;
}

.insurance-strip__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--coral-dark);
  font-weight: 900;
}

.insurance-strip p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 900;
}

.insurance-strip a {
  color: var(--orange-dark);
  font-weight: 900;
  white-space: nowrap;
}

.insurance-strip a:hover {
  color: var(--coral-dark);
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  background: var(--navy);
}

.quote-section::before {
  position: absolute;
  inset: -70px 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(50, 52, 111, 0.74), rgba(50, 52, 111, 0.42)),
    url("images/Kinderfysiotherapie/Kinderfysio8.webp") center / cover;
  transform: translateY(var(--quote-bg-y, 0));
  transition: transform 80ms linear;
}

.quote-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 247, 231, 0.12);
}

.quote-section__inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 30px 38px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(50, 52, 111, 0.1);
}

.quote-section__photo {
  position: relative;
  width: 170px;
  min-height: 138px;
}

.quote-section__photo img {
  position: absolute;
  width: 108px;
  height: 108px;
  object-fit: cover;
  object-position: center 18%;
  border: 6px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(50, 52, 111, 0.16);
}

.quote-section__photo img:first-child {
  left: 0;
  top: 0;
  z-index: 2;
}

.quote-section__photo img:last-child {
  right: 0;
  bottom: 0;
  z-index: 1;
}

.quote-section blockquote {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
  color: var(--navy);
  text-align: left;
  border-left: 3px solid var(--coral);
}

.quote-section blockquote::before {
  position: absolute;
  top: -28px;
  left: 18px;
  content: "“";
  color: rgba(244, 130, 141, 0.36);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}

.quote-section p {
  position: relative;
  max-width: 860px;
  margin: 0;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
}

.quote-section footer {
  position: relative;
  display: grid;
  gap: 2px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.quote-section footer strong,
.signature-block strong {
  color: var(--coral-dark);
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.quote-section footer span,
.signature-block span {
  font-size: 0.96rem;
}

.age-section {
  position: relative;
  padding: 82px 0 82px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 217, 135, 0.2) 0 9%, transparent 10%),
    radial-gradient(circle at 92% 76%, rgba(244, 130, 141, 0.18) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.age-section .section-heading h2 {
  color: var(--white);
}

.age-section .section-heading .eyebrow {
  background: rgba(255, 217, 135, 0.18);
  color: var(--yellow);
}

.section-heading {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.98;
}

.age-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
}

.age-story {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 24px 42px 24px 24px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(12, 18, 62, 0.28);
  overflow: hidden;
}

.age-story::before {
  position: absolute;
  inset: auto -70px -90px auto;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
}

.age-story__media {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px 24px 76px 24px;
  background: var(--mint);
}

.age-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 260ms ease;
}

.age-story__media.is-changing img {
  opacity: 0.32;
  transform: scale(1.03);
}

.age-story__content {
  position: relative;
  z-index: 1;
}

.age-story h2 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 0.95;
}

.age-story p:not(.eyebrow) {
  position: relative;
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.75;
}

.age-story__list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.age-story__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.age-story__list li::before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  content: "✓";
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
}

.age-story .btn {
  position: relative;
  align-self: flex-start;
}

.age-stepper {
  position: relative;
  display: none;
}

.age-stepper__button {
  min-height: 46px;
  padding: 0 14px;
  border: 2px solid rgba(50, 52, 111, 0.14);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.age-stepper__button:hover {
  border-color: var(--coral);
  background: rgba(244, 130, 141, 0.1);
}

.age-stepper__button:disabled {
  border-color: rgba(101, 112, 141, 0.14);
  background: rgba(101, 112, 141, 0.06);
  color: rgba(101, 112, 141, 0.62);
  cursor: not-allowed;
}

.age-stepper__button:disabled:hover {
  border-color: rgba(101, 112, 141, 0.14);
  background: rgba(101, 112, 141, 0.06);
}

.age-visual {
  display: block;
}

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

.age-option {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 4px solid transparent;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(12, 18, 62, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.age-option:hover,
.age-option.is-active {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 20px 42px rgba(12, 18, 62, 0.32);
}

.age-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.age-option span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: grid;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
}

.locations-section {
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 130, 141, 0.12) 0 8%, transparent 9%),
    radial-gradient(circle at 92% 72%, rgba(255, 217, 135, 0.26) 0 10%, transparent 11%),
    var(--white);
}

.locations-page-hero {
  padding: 92px 0 64px;
  background:
    var(--page-hero-bg);
}

.locations-page-hero__inner {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.locations-page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.locations-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.65;
}

.page-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.page-jump-links .btn {
  min-height: 48px;
  padding: 0 20px;
}

.location-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.locations-map-section {
  padding: 48px 0 78px;
  background: var(--white);
}

.process-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 68px 0 84px;
}

.process-hero__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px 30px 104px 30px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.process-hero__image::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 2px dashed rgba(244, 130, 141, 0.42);
  border-radius: 22px 22px 84px 22px;
  pointer-events: none;
}

.process-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.process-hero__content {
  display: grid;
  gap: 22px;
}

.process-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.process-hero p:not(.eyebrow),
.process-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.72;
}

.process-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.reimbursement-section {
  padding: 72px 0 42px;
  background: var(--white);
}

.reimbursement-section__inner,
.rates-section__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.reimbursement-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: start;
}

.reimbursement-note,
.rates-table-wrap,
.rates-footnotes {
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.reimbursement-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
  background: var(--white);
}

.reimbursement-content h2,
.reimbursement-note h2,
.rates-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 1;
}

.reimbursement-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.reimbursement-content p:not(.eyebrow),
.reimbursement-note p,
.rates-footnotes p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.68;
}

.reimbursement-note {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--navy);
  color: var(--white);
}

.reimbursement-note h2 {
  color: var(--white);
  font-size: 2rem;
}

.reimbursement-note p {
  color: rgba(255, 255, 255, 0.82);
}

.reimbursement-note a:not(.btn) {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reimbursement-note .btn {
  width: fit-content;
  margin-top: 4px;
}

.rates-section {
  padding: 42px 0 88px;
  background: var(--white);
}

.rates-table-wrap {
  overflow-x: auto;
  background: var(--white);
}

.rates-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.rates-table th,
.rates-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1rem;
  font-weight: 800;
}

.rates-table th {
  color: var(--white);
  background: var(--navy);
}

.rates-table th:last-child,
.rates-table td:last-child {
  width: 160px;
  text-align: right;
  white-space: nowrap;
}

.rates-table tbody tr:nth-child(even) {
  background: rgba(220, 236, 227, 0.38);
}

.rates-table tbody tr:last-child td {
  border-bottom: 0;
}

.rates-footnotes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--cream);
}

.house-rules-section,
.privacy-section,
.payment-terms-section {
  background: var(--white);
  scroll-margin-top: 110px;
}

.house-rules-section {
  padding: 72px 0 42px;
}

.privacy-section {
  padding: 42px 0;
}

.payment-terms-section {
  padding: 42px 0 88px;
}

.house-rules-section__inner,
.privacy-section__inner,
.payment-terms-section__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.rules-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.rules-card--wide {
  grid-column: 1 / -1;
}

.rules-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.rules-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
}

.rules-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: var(--coral);
  transform: translateY(-50%);
}

.rules-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.68;
}

.rules-card a {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rules-card a:hover {
  color: var(--navy);
}

.contact-method-section {
  padding: 80px 0 72px;
  background: var(--white);
}

.contact-method-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.contact-method-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-method-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-method-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.contact-method-card span {
  width: fit-content;
  padding: var(--eyebrow-padding);
  border-radius: 999px;
  background: var(--eyebrow-bg);
  color: var(--eyebrow-color);
  font-size: var(--eyebrow-size);
  font-weight: 900;
}

.contact-method-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.contact-method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.58;
}

.contact-method-card .btn {
  align-self: stretch;
  margin-top: 8px;
  text-align: center;
  overflow-wrap: anywhere;
}

body[data-page="contact"] .contact-method-card {
  background: var(--navy);
  color: var(--white);
}

body[data-page="contact"] .contact-method-card span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

body[data-page="contact"] .contact-method-card h3,
body[data-page="contact"] .contact-method-card p {
  color: var(--white);
}

body[data-page="contact"] .contact-method-card .btn {
  background: var(--orange);
  color: var(--white);
}

body[data-page="contact"] .contact-method-card .btn:hover {
  background: var(--orange-dark);
}

.appointment-options--compact {
  padding: 18px 0 86px;
}

.appointment-options--compact .section-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.appointment-options--compact .contact-method-card {
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  box-shadow: var(--shadow-card-soft);
}

.appointment-options--compact .contact-method-card h3 {
  font-size: 1.55rem;
}

.appointment-options--compact .contact-method-card p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.appointment-options--compact .contact-method-card .btn {
  min-height: 48px;
  margin-top: 4px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.location-detail-intro,
.location-detail-guidance,
.location-detail-map {
  background: var(--white);
}

.location-refresh-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background: var(--page-hero-bg);
}

.location-refresh-hero__inner {
  position: relative;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 34px;
}

.location-refresh-hero__image {
  position: relative;
  order: 2;
  width: min(100%, 920px);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border: 10px solid var(--white);
  border-radius: 36px 36px 104px 36px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.location-refresh-hero__image::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 2px dashed rgba(244, 130, 141, 0.62);
  border-radius: 30px 30px 96px 30px;
  pointer-events: none;
}

.location-refresh-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-refresh-hero__content {
  order: 1;
  max-width: 820px;
  text-align: center;
}

.location-refresh-hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.8rem, 4.35vw, 4.35rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
}

.location-refresh-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.72;
}

.location-refresh-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 780px);
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.location-refresh-hero__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.location-refresh-hero__highlights span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.location-refresh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.location-refresh-section,
.location-refresh-split,
.location-refresh-photos,
.location-refresh-map {
  background: var(--white);
}

.location-refresh-section {
  padding: 82px 0 34px;
}

.location-refresh-insurance + .location-refresh-section {
  padding-top: 0;
}

.location-refresh-section__inner,
.location-refresh-split__inner,
.location-refresh-photos__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.location-refresh-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.location-refresh-heading h2,
.location-refresh-split h2,
.location-refresh-insurance h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.location-refresh-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(50, 52, 111, 0.08);
}

.location-refresh-info-grid article {
  min-height: 136px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.72);
}

.location-refresh-info-grid article:last-child {
  border-right: 0;
}

.location-refresh-info-grid span {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-refresh-info-grid strong {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.45;
}

.location-refresh-info-grid a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.location-refresh-split {
  padding: 62px 0 78px;
}

.location-refresh-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 58px;
}

.location-refresh-split__content {
  display: grid;
  gap: 16px;
  max-width: 650px;
}

.location-refresh-split__content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.7;
}

.location-refresh-split__content .btn {
  justify-self: start;
  margin-top: 6px;
}

.location-refresh-split__image {
  overflow: hidden;
  aspect-ratio: 1.06;
  border: 10px solid var(--white);
  border-radius: 34px 34px 100px 34px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.location-refresh-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-refresh-insurance {
  padding: 0 0 76px;
  background: var(--white);
}

.location-refresh-insurance__inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.location-refresh-insurance__inner > div {
  min-width: 0;
}

.location-refresh-insurance__inner > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.location-refresh-insurance h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  overflow-wrap: anywhere;
}

.location-refresh-insurance p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.6;
}

.location-refresh-insurance .btn {
  margin-top: 20px;
}

.location-refresh-photos {
  padding: 6px 0 78px;
}

.location-refresh-photos__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.location-refresh-photos img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(50, 52, 111, 0.1);
}

.location-refresh-photos img:nth-child(2) {
  margin-top: 42px;
}

.location-refresh-map {
  padding-top: 0;
}

.location-detail-intro {
  padding: 76px 0 48px;
}

.location-detail-intro__inner,
.location-detail-map__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.location-detail-intro__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.location-detail-intro__image {
  grid-row: 1 / span 2;
  align-self: stretch;
  display: flex;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px 28px 86px 28px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.location-detail-intro__image img {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.location-detail-intro__content,
.location-detail-contact {
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.location-detail-intro__content {
  display: grid;
  gap: 16px;
  padding: 36px;
  background: var(--cream);
}

.location-detail-intro__content h2,
.location-detail-contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 1;
}

.location-detail-intro__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.location-detail-intro__content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.7;
}

.location-detail-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.location-detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.55;
}

.location-detail-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--coral);
  transform: translateY(-50%);
}

.location-detail-contact {
  grid-column: 2;
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--navy);
  color: var(--white);
}

.location-detail-contact h2 {
  color: var(--white);
  font-size: 2rem;
}

.location-detail-contact dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.location-detail-contact div {
  display: grid;
  gap: 4px;
}

.location-detail-contact dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-contact dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.5;
}

.location-detail-contact a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.location-detail-guidance {
  padding: 34px 0 54px;
}

.location-detail-guidance__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.location-detail-guidance__content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.location-detail-guidance__content h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.location-detail-guidance__content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.7;
}

.location-detail-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.location-detail-links a {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(50, 52, 111, 0.08);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 14px 30px rgba(50, 52, 111, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-detail-links a:hover {
  box-shadow: 0 18px 38px rgba(50, 52, 111, 0.12);
  transform: translateY(-3px);
}

.location-detail-links span {
  width: fit-content;
  padding: var(--eyebrow-padding);
  border-radius: 999px;
  background: var(--eyebrow-bg);
  color: var(--eyebrow-color);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-links strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
}

.location-photo-slider {
  width: min(1180px, calc(100% - 48px));
  margin: 38px auto 0;
  overflow: visible;
  padding: 8px 0 18px;
}

.location-photo-slider__track {
  position: relative;
  min-height: 390px;
}

.location-photo-slider img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 8px solid var(--white);
  background: var(--mint);
  box-shadow: 0 18px 40px rgba(50, 52, 111, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, z-index 220ms ease;
}

.location-photo-slider img:hover {
  z-index: 10;
  box-shadow: 0 24px 54px rgba(50, 52, 111, 0.2);
  transform: translateY(-10px) rotate(0deg) scale(1.03);
}

.location-photo-slider img:first-child {
  left: 0;
  top: 48px;
  z-index: 2;
  width: min(34vw, 390px);
  height: 260px;
  border-radius: 30px 30px 96px 30px;
  transform: rotate(-2deg);
}

.location-photo-slider img:nth-child(2) {
  left: 22%;
  top: 0;
  z-index: 3;
  width: min(24vw, 280px);
  height: 190px;
  border-radius: 999px 999px 38px 999px;
  transform: rotate(3deg);
}

.location-photo-slider img:nth-child(3) {
  left: 40%;
  top: 102px;
  z-index: 4;
  width: min(31vw, 360px);
  height: 238px;
  border-radius: 28px 96px 28px 28px;
  transform: rotate(-1deg);
}

.location-photo-slider img:nth-child(4) {
  right: 19%;
  top: 20px;
  z-index: 2;
  width: min(25vw, 300px);
  height: 210px;
  border-radius: 82px 28px 82px 28px;
  transform: rotate(2deg);
}

.location-photo-slider img:nth-child(5) {
  right: 2%;
  top: 136px;
  z-index: 3;
  width: min(27vw, 320px);
  height: 222px;
  border-radius: 32px 32px 32px 104px;
  transform: rotate(-2deg);
}

.location-photo-slider img:last-child {
  left: 17%;
  bottom: 0;
  z-index: 1;
  width: min(36vw, 410px);
  height: 170px;
  border-radius: 999px;
  transform: rotate(1deg);
}

.location-detail-map {
  padding: 48px 0 80px;
  scroll-margin-top: 110px;
}

.location-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
  gap: 24px;
  align-items: stretch;
}

.location-map-embed {
  overflow: hidden;
  min-height: 430px;
  border-radius: 28px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.map-widget--detail {
  min-height: 500px;
  border-radius: 28px 28px 86px 28px;
}

.location-map-selector {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.location-map-selector h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.location-finder--detail {
  grid-template-rows: auto 1fr;
}

.location-finder--detail .location-map-selector__intro {
  display: grid;
  gap: 12px;
}

.location-finder--detail h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.location-finder--detail .location-list {
  max-height: 500px;
  padding-right: 4px;
}

.location-map-selector__buttons {
  display: grid;
  gap: 10px;
}

.location-map-selector__buttons button {
  min-height: 46px;
  scroll-margin-block: 16px;
  padding: 10px 14px;
  border: 2px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.location-map-selector__buttons button:hover,
.location-map-selector__buttons button.is-active {
  border-color: var(--coral);
  box-shadow: 0 12px 24px rgba(50, 52, 111, 0.1);
  transform: translateY(-2px);
}

.location-map-embed iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

.location-detail-map__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.appointment-page-hero {
  padding: 72px 0 82px;
  background:
    var(--page-hero-bg);
  color: var(--navy);
}

.appointment-page-hero__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: center;
}

.appointment-page-hero__content {
  max-width: 780px;
}

.appointment-page-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
}

.appointment-page-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.6;
}

.appointment-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.appointment-summary {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.appointment-summary h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.appointment-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.appointment-summary li {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.appointment-summary .btn {
  justify-self: start;
}

.appointment-summary .btn--summary-location {
  background: var(--navy);
  color: var(--white);
}

.appointment-summary .btn--summary-location:hover {
  background: var(--white);
  color: var(--navy);
}

.appointment-options {
  padding: 82px 0;
  background: var(--white);
}

.appointment-options__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

body[data-page="afspraak"] .appointment-options .contact-method-card {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(12, 18, 62, 0.18);
}

body[data-page="afspraak"] .appointment-options .contact-method-card span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

body[data-page="afspraak"] .appointment-options .contact-method-card h3,
body[data-page="afspraak"] .appointment-options .contact-method-card p {
  color: var(--white);
}

body[data-page="afspraak"] .appointment-options .contact-method-card .btn {
  background: var(--orange);
  color: var(--white);
}

body[data-page="afspraak"] .appointment-options .contact-method-card .btn:hover {
  background: var(--orange-dark);
}

.appointment-support {
  padding: 0 0 94px;
  background: var(--white);
}

.appointment-support__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 40px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.appointment-support h2 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.appointment-support p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.62;
}

.process-intro {
  padding: 64px 0 72px;
  background: var(--navy);
}

.process-intro__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.process-intro__inner > div:first-child {
  position: sticky;
  top: 138px;
}

.process-intro h2 {
  margin: 0;
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  max-width: 8.6em;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 0.98;
}

.process-intro .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.process-steps {
  display: grid;
  gap: 0;
  padding-bottom: 0;
}

.process-step {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 8px;
  padding: 22px 24px 22px 78px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(18, 20, 58, 0.18);
}

.process-step + .process-step {
  margin-top: 18px;
}

.process-step:nth-child(1) {
  z-index: 1;
}

.process-step:nth-child(2) {
  z-index: 2;
}

.process-step:nth-child(3) {
  z-index: 3;
}

.process-step:nth-child(4) {
  z-index: 4;
}

.process-step span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}

.process-step p {
  font-size: 1rem;
}

.practice-voice {
  padding: 72px 0 104px;
  background: var(--white);
}

.practice-voice__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(50, 52, 111, 0.08);
}

.practice-voice__image {
  overflow: hidden;
  border-radius: 24px 24px 82px 24px;
  background: var(--mint);
}

.practice-voice__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.practice-voice__content {
  display: grid;
  gap: 16px;
}

.practice-voice h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 0.98;
}

.practice-voice p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.72;
}

.quality-section {
  padding: 0 0 104px;
  background: var(--white);
}

.specializations-section {
  padding: 64px 0 96px;
  background: var(--white);
}

.specializations-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.specializations-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.specialization-filter {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 136px);
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(50, 52, 111, 0.12);
}

.specialization-filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.specialization-filter h3 {
  margin: 0;
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.specialization-filter__header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.specialization-filter__header button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.specialization-filter__header button:hover {
  color: rgba(255, 255, 255, 0.78);
}

.specialization-search {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(50, 52, 111, 0.12);
}

.specialization-search span {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.specialization-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 2px solid rgba(50, 52, 111, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.specialization-search input::placeholder {
  color: rgba(50, 52, 111, 0.48);
}

.specialization-search input:focus {
  border-color: var(--navy);
  outline: 0;
}

.specialization-filter__group {
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.specialization-filter__group summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.specialization-filter__group summary::-webkit-details-marker {
  display: none;
}

.specialization-filter__group summary::after {
  content: "⌄";
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.specialization-filter__group[open] summary::after {
  transform: rotate(180deg);
}

.specialization-filter fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 14px 14px;
  border: 0;
}

.specialization-filter__group[open] fieldset {
  padding-top: 2px;
}

.specialization-filter label {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
}

.specialization-filter input {
  width: 18px;
  height: 18px;
  accent-color: var(--white);
}

.specialization-filter__status {
  min-height: 22px;
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.35;
}

.specialization-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card-soft);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.specialization-card:hover,
.specialization-card:focus-within {
  border-color: rgba(244, 124, 32, 0.42);
  box-shadow: 0 18px 38px rgba(50, 52, 111, 0.12);
  transform: translateY(-2px);
}

.specialization-card.is-hidden {
  display: none;
}

.specialization-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.specialization-card__link:focus-visible {
  outline: 3px solid #0066d8;
  outline-offset: -5px;
}

.specialization-card img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.specialization-card:hover img,
.specialization-card:focus-within img {
  transform: scale(1.025);
}

.specialization-card__placeholder {
  height: 170px;
  background:
    linear-gradient(135deg, rgba(50, 52, 111, 0.92), rgba(76, 78, 145, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%);
}

.specialization-card__content {
  min-width: 0;
  min-height: 144px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  grid-template-rows: auto 1fr;
  gap: 8px 14px;
  padding: 20px;
}

.specialization-card h3 {
  grid-column: 1 / -1;
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.45vw, 1.68rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.specialization-card p {
  grid-column: 1;
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.specialization-card__cue {
  position: relative;
  z-index: 2;
  pointer-events: none;
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50, 52, 111, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.specialization-card:hover .specialization-card__cue,
.specialization-card:focus-within .specialization-card__cue {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateX(2px);
}

.specialism-hero {
  padding: 72px 0 58px;
  background:
    linear-gradient(115deg, rgba(255, 247, 231, 0.98), rgba(220, 236, 227, 0.94)),
    url("images/Kinderfysiotherapie/Kinderfysio8.webp") center / cover;
}

.specialism-hero__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.specialism-hero__content {
  min-width: 0;
  max-width: 760px;
}

.specialism-hero h1 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

.specialism-hero h1.specialism-title--compact {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.specialism-hero--voorkeurshouding .specialism-hero__image,
.specialism-hero--landscape .specialism-hero__image {
  aspect-ratio: 3 / 2;
}

.specialism-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.7;
}

.specialism-hero__image {
  overflow: hidden;
  aspect-ratio: 0.95;
  border: 10px solid var(--white);
  border-radius: 36px 36px 110px 36px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.specialism-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialism-meta {
  max-width: 720px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.specialism-meta__author-image {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 999px;
}

.specialism-meta img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
}

.specialism-meta strong,
.specialism-meta span {
  display: block;
}

.specialism-meta strong {
  color: var(--navy);
  font-weight: 900;
}

.specialism-meta strong a {
  color: inherit;
  text-decoration: none;
}

.specialism-meta strong a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.specialism-meta span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.specialism-article {
  padding: 64px 0 96px;
  background: var(--white);
}

body[data-page="verwijzers"] .specialism-article {
  padding-bottom: 42px;
}

.specialism-article__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.specialism-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.specialism-sidebar__box {
  padding: 22px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(50, 52, 111, 0.12);
}

.specialism-sidebar__box h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.specialism-sidebar nav {
  display: grid;
  gap: 8px;
}

.specialism-sidebar nav a {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.specialism-sidebar nav a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateX(2px);
}

.specialism-sidebar nav .specialism-back-link {
  margin-bottom: 8px;
  background: var(--white);
  color: var(--navy);
}

.specialism-sidebar nav .specialism-sidebar__appointment {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 30px rgba(244, 124, 32, 0.35);
}

.specialism-sidebar nav .specialism-sidebar__appointment:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.specialism-content {
  --specialism-media-spacing: 24px;
  max-width: 820px;
}

.specialism-block {
  scroll-margin-top: 110px;
  padding: 0 0 42px;
}

.specialism-block + .specialism-block {
  padding-top: 42px;
  border-top: 1px solid rgba(50, 52, 111, 0.12);
}

.specialism-block h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.06;
}

.specialism-block h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}

.specialism-block p + h3 {
  margin-top: 24px;
}

.specialism-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.72;
}

.specialism-inline-figure {
  max-width: 820px;
  margin: var(--specialism-media-spacing) 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.specialism-inline-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.specialism-inline-figure figcaption {
  padding: 16px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
}

.specialism-block p + p,
.specialism-block p + ol {
  margin-top: 16px;
}

.specialism-block a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(244, 124, 32, 0.42);
  text-underline-offset: 4px;
}

.specialism-block a:hover {
  color: var(--orange-dark);
}

.specialism-block .btn {
  color: var(--navy);
  text-decoration: none;
}

.specialism-block .btn:hover {
  color: var(--navy);
}

.referrer-wide-section {
  padding: 0 0 72px;
  background: var(--white);
  scroll-margin-top: 110px;
}

.referrer-wide-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.referrer-wide-section__inner h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.06;
}

.referrer-wide-section__inner > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.72;
}

.referrer-contact-grid {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.referrer-contact-grid .team-card {
  grid-template-columns: minmax(118px, 0.38fr) minmax(0, 1fr);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.16);
}

.referrer-contact-grid .team-card img {
  height: 260px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.92);
  object-fit: cover;
  object-position: center 22%;
}

.referrer-contact-grid .team-card h3,
.referrer-contact-grid .team-card p,
.referrer-contact-grid .team-card__role {
  color: var(--white);
}

.referrer-contact-grid .team-card__role {
  color: rgba(255, 255, 255, 0.78);
}

.referrer-contact-grid .team-card__links .btn {
  background: var(--white);
  color: var(--navy);
}

.referrer-contact-grid .team-card__links .btn:hover {
  background: var(--mint);
  color: var(--navy);
}

.specialism-block ol,
.specialism-block ul {
  margin: 0;
  padding-left: 21px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.62;
}

.specialism-block ol {
  margin-top: 16px;
}

.specialism-check-grid {
  display: grid;
  gap: 22px;
}

.specialism-block p + .specialism-check-grid {
  margin-top: 16px;
}

.specialism-check-grid article {
  padding-left: 20px;
  border-left: 4px solid var(--coral);
}

.specialism-wide-cta {
  padding-top: 0;
}

.quality-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
}

.quality-section .section-heading {
  width: 100%;
  margin: 0;
  text-align: left;
}

.quality-section .section-heading .eyebrow {
  margin-left: 0;
  margin-right: auto;
}

.quality-section .section-heading h2 {
  max-width: 720px;
}

.quality-section__image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mint);
}

.quality-section__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.quality-card {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quality-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.72;
}

.quality-card a {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quality-card a:hover {
  color: var(--navy);
}

.qualizorg-section {
  padding: 88px 0 56px;
  background: var(--cream);
}

.qualizorg-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.qualizorg-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 44px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.qualizorg-card__content {
  display: grid;
  gap: 16px;
}

.qualizorg-card h2,
.qualizorg-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.qualizorg-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.72;
}

.qualizorg-card a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qualizorg-card a:hover {
  color: var(--navy);
}

.qualizorg-card .eyebrow {
  background: rgba(244, 124, 32, 0.12);
  color: var(--orange-dark);
}

.qualizorg-card__widget {
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.team-intro-photo {
  padding: 0 0 24px;
  background: var(--white);
}

.team-intro-photo__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 36px 36px 110px 36px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.team-intro-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.team-section,
.profile-section {
  padding: 72px 0 100px;
  background: var(--white);
}

.team-section__inner,
.profile-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1fr);
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 0;
  background: var(--white);
  object-fit: contain;
  object-position: center bottom;
}

.team-card--join {
  background: var(--navy);
  color: var(--white);
}

.team-card--join .team-card__body {
  grid-template-rows: auto auto 1fr;
}

.team-card.team-card--join h3,
.team-card--join .team-card__role {
  color: var(--white);
}

.team-card--join .team-card__role {
  color: rgba(255, 255, 255, 0.78);
}

.team-card__placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 280px;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 217, 135, 0.36) 0 13%, transparent 14%),
    var(--mint);
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
}

.team-card__body {
  display: grid;
  flex: 1;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 24px;
}

.team-card h3,
.profile-story h2,
.profile-facts h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 1;
}

.team-card h3 {
  font-size: 1.8rem;
}

.team-card p,
.profile-story p,
.profile-facts li,
.profile-tag-list li {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.58;
}

.team-card__role {
  color: var(--coral-dark);
  font-weight: 900;
}

.team-card__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-self: end;
  padding-top: 10px;
}

.team-card__links .btn {
  min-height: 48px;
  text-align: center;
  overflow-wrap: anywhere;
}

.team-card__meta-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
}

.team-linkedin {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  opacity: 0.42;
}

a.team-linkedin {
  opacity: 1;
  transition: background 180ms ease, transform 180ms ease;
}

a.team-linkedin:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.profile-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 68px 0 84px;
}

.profile-hero__image {
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 34px 34px 104px 34px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.profile-hero__image img {
  width: 100%;
  height: 540px;
  padding: 0;
  background: var(--white);
  object-fit: cover;
  object-position: center 18%;
}

.profile-hero__content {
  display: grid;
  gap: 20px;
}

.profile-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.profile-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.65;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.profile-story,
.profile-facts {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 18px 46px rgba(50, 52, 111, 0.09);
}

.profile-story h2,
.profile-facts h2 {
  font-size: 2rem;
}

.profile-facts ul,
.profile-tag-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-facts strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.profile-tag-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
}

.text-link {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.signature-block {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.locations-map-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}

.map-widget--page {
  min-height: 620px;
}

.location-finder--page .location-list {
  max-height: 510px;
}

.location-overview {
  padding: 88px 0 100px;
  background: var(--cream);
}

.location-overview__clear {
  margin-top: 22px;
}

.location-overview__clear[hidden] {
  display: none;
}

.location-card-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.location-item[data-location-item="spijkenisse"],
.location-card[data-location-card="spijkenisse"] {
  order: 1;
}

.location-item[data-location-item="hoogvliet"],
.location-card[data-location-card="hoogvliet"] {
  order: 2;
}

.location-item[data-location-item="capelle"],
.location-card[data-location-card="capelle"] {
  order: 3;
}

.location-item[data-location-item="rotterdam"],
.location-card[data-location-card="rotterdam"] {
  order: 4;
}

.location-item[data-location-item="vlaardingen"],
.location-card[data-location-card="vlaardingen"] {
  order: 5;
}

.location-item[data-location-item="ridderkerk"],
.location-card[data-location-card="ridderkerk"] {
  order: 6;
}

.location-item[data-location-item="barendrecht"],
.location-card[data-location-card="barendrecht"] {
  order: 7;
}

.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-card.is-active {
  box-shadow: 0 20px 44px rgba(244, 124, 32, 0.18);
  transform: translateY(-4px);
}

.location-card.is-hidden {
  display: none;
}

.location-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.location-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.location-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.location-card a:not(.btn) {
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.location-card a:not(.btn):hover {
  color: var(--coral-dark);
}

.location-card__actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.location-card__actions .btn {
  min-height: 48px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.location-card__actions--location-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-card__actions--location-detail .btn--primary {
  grid-column: 1 / -1;
  min-height: 56px;
}

.locations-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.map-widget {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 34px 34px 104px 34px;
  background:
    linear-gradient(135deg, rgba(220, 236, 227, 0.95), rgba(255, 247, 231, 0.98)),
    var(--mint);
  box-shadow: var(--shadow);
}

.map-widget__google,
.map-widget__fallback {
  position: absolute;
  inset: 0;
}

.map-widget__google {
  z-index: 1;
}

.map-widget__fallback {
  z-index: 0;
}

.map-widget.has-google-map .map-widget__fallback,
.map-widget.has-google-map .map-pin,
.map-widget.has-google-map .map-widget__consent {
  display: none;
}

.map-widget__consent {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(340px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(50, 52, 111, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 18px 44px rgba(50, 52, 111, 0.16);
  transform: translate(-50%, -50%);
}

.map-widget__consent[hidden] {
  display: none;
}

.map-widget__consent strong {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.map-widget__consent span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
}

.map-widget__consent .btn {
  min-height: 42px;
  padding-inline: 16px;
}

.map-widget::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  content: "";
  border: 2px dashed rgba(244, 130, 141, 0.42);
  border-radius: 24px 24px 84px 24px;
  pointer-events: none;
}

.map-widget::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  content: "Rijnmond";
  color: rgba(50, 52, 111, 0.12);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 800;
  line-height: 1;
}

.map-widget__water {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 45%;
  height: 76px;
  background: rgba(101, 164, 202, 0.28);
  transform: rotate(-7deg);
}

.map-widget__water::after {
  position: absolute;
  inset: 24px 0 auto;
  height: 2px;
  content: "";
  background: rgba(36, 75, 143, 0.24);
}

.map-widget__roads {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(32deg, transparent 0 35%, rgba(255, 255, 255, 0.72) 35.2% 36.1%, transparent 36.3%),
    linear-gradient(112deg, transparent 0 41%, rgba(255, 255, 255, 0.68) 41.2% 42%, transparent 42.2%),
    linear-gradient(8deg, transparent 0 62%, rgba(255, 255, 255, 0.62) 62.2% 63%, transparent 63.2%);
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 4px solid var(--white);
  border-radius: 999px;
  background:
    url("images/Locaties/spook-fysio.svg") center / 18px 30px no-repeat,
    var(--white);
  box-shadow: 0 10px 22px rgba(50, 52, 111, 0.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.map-pin::after {
  position: absolute;
  inset: -11px;
  content: "";
  border-radius: 999px;
  background: rgba(244, 130, 141, 0.16);
  transform: scale(0);
  transition: transform 180ms ease;
}

.map-pin span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  min-width: max-content;
  padding: 6px 9px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-pin:hover,
.map-pin.is-active {
  box-shadow: 0 14px 28px rgba(244, 124, 32, 0.28);
  transform: translate(-50%, -50%) scale(1.2);
}

.map-pin:hover::after,
.map-pin.is-active::after {
  transform: scale(1);
}

.map-pin:hover span,
.map-pin.is-active span {
  opacity: 1;
  transform: translate(-50%, 0);
}

.map-info-card {
  display: grid;
  gap: 7px;
  min-width: 210px;
  max-width: 260px;
  padding-bottom: 6px;
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
}

.map-info-card strong {
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.map-info-card span {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.map-info-card button,
.map-info-card a {
  justify-self: start;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 14px;
  border: 3px solid transparent;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.map-info-card button:hover,
.map-info-card a:hover {
  background: var(--orange-dark);
}

.map-info-card button:focus-visible,
.map-info-card a:focus-visible {
  border-color: #0066d8;
  outline: 0;
}

.location-finder {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.location-search {
  display: grid;
  gap: 8px;
}

.location-search label {
  display: grid;
  gap: 8px;
}

.location-search span {
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.location-search input,
.location-search select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 2px solid rgba(50, 52, 111, 0.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.location-search select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%) calc(100% - 18px) 20px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--navy) 50%, transparent 50%) calc(100% - 13px) 20px / 7px 7px no-repeat,
    var(--white);
  cursor: pointer;
}

.location-search input:focus,
.location-search select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(244, 130, 141, 0.16);
}

.location-search__controls {
  display: grid;
  grid-template-columns: minmax(96px, 0.55fr) 1fr;
  gap: 10px;
}

.location-search__controls .btn {
  min-height: 50px;
  border: 0;
  font: inherit;
  font-weight: 900;
}

.location-search__clear {
  justify-self: start;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--coral-dark);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.location-search__clear:hover {
  color: var(--navy);
}

.location-search__clear[hidden] {
  display: none;
}

.location-search__status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.location-list {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 10px;
  grid-auto-rows: max-content;
  max-height: 452px;
  overflow: auto;
  padding: 4px 4px 6px 0;
}

.location-item {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--white);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.location-item strong {
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1;
}

.location-item span {
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.location-item__detail {
  justify-self: start;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.location-item__detail:hover {
  background: var(--orange-dark);
}

.location-item:hover,
.location-item.is-active {
  border-color: var(--coral);
  box-shadow: 0 12px 26px rgba(50, 52, 111, 0.12);
  transform: translateY(-2px);
}

.location-item.is-hidden {
  display: none;
}

body[data-page="home"] .location-finder,
.location-finder--featured {
  background: var(--navy);
  color: var(--white);
}

body[data-page="home"] .location-search span,
body[data-page="home"] .location-search__status,
.location-finder--featured .location-search span,
.location-finder--featured .location-search__status {
  color: var(--white);
}

body[data-page="home"] .location-search__clear,
.location-finder--featured .location-search__clear {
  color: var(--white);
}

body[data-page="home"] .location-search__clear:hover,
.location-finder--featured .location-search__clear:hover {
  color: var(--yellow);
}

body[data-page="home"] .location-item,
.location-finder--featured .location-item {
  background: var(--white);
  color: var(--muted);
  border-color: transparent;
}

body[data-page="home"] .location-item strong,
.location-finder--featured .location-item strong {
  color: var(--navy);
}

body[data-page="home"] .location-item:hover,
.location-finder--featured .location-item:hover,
body[data-page="home"] .location-item.is-active,
.location-finder--featured .location-item.is-active {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.faq-section {
  padding: 96px 0 110px;
  background: var(--cream);
}

.faq-section__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 54px;
}

.faq-content h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-content__button {
  width: fit-content;
  margin-top: 22px;
}

.faq-section--page {
  background: var(--white);
}

.faq-page__inner {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-list--page {
  margin-top: 34px;
}

.faq-category {
  display: grid;
  gap: 12px;
  scroll-margin-top: 110px;
}

.faq-category + .faq-category {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--border-subtle);
}

.faq-category__heading {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.faq-category__heading .eyebrow {
  margin-bottom: 0;
}

.faq-category__heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.faq-list a {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list a:hover {
  color: var(--navy);
}

.faq-list details {
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(50, 52, 111, 0.08);
  overflow: hidden;
}

.faq-section--page .faq-list details {
  border: 0;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(12, 18, 62, 0.18);
}

.faq-section--page .faq-list summary {
  color: var(--white);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  content: "+";
  border-radius: 999px;
  background: var(--mint);
  color: var(--coral-dark);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-section--page .faq-list summary::after {
  background: rgba(255, 255, 255, 0.16);
  color: var(--yellow);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details > p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.faq-section--page .faq-list details > p {
  padding-top: 20px;
  border-top: 1px solid rgba(50, 52, 111, 0.1);
  background: var(--white);
}

.faq-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 10px solid var(--white);
  border-radius: 34px 34px 104px 34px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta {
  padding: 0 0 90px;
  background: var(--cream);
}

.final-cta--plain {
  background: var(--white);
}

body[data-page="werkwijze"] .final-cta--plain {
  background: var(--cream);
}

.final-cta__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 217, 135, 0.45) 0 14%, transparent 15%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.final-cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.final-cta .btn {
  flex: 0 0 auto;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(120px, 0.72fr) minmax(230px, 1.02fr) minmax(155px, 0.8fr) minmax(150px, 0.74fr);
  gap: 28px;
  padding: 64px 0 46px;
}

.site-footer__brand img {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

.site-footer__brand p {
  max-width: 360px;
  margin: 20px 0 0;
  font-weight: 700;
  line-height: 1.65;
}

.site-footer__brand .site-footer__partner {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.site-footer__partner a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__partner a:hover {
  color: var(--white);
}

.site-footer__appointment {
  width: fit-content;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  color: var(--white);
}

.site-footer__appointment:hover {
  color: var(--white);
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__column h2 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1;
}

.site-footer__column a,
.site-footer__column span {
  max-width: 100%;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: normal;
  word-break: normal;
}

.site-footer__column a:hover {
  color: var(--white);
}

.site-footer__bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__social a:hover {
  color: var(--yellow);
}

/* Keep eyebrow labels visually consistent even inside stricter text/card contexts. */
.eyebrow,
p.eyebrow,
.contact-method-card span,
.location-detail-links span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  justify-self: start;
  margin: 0 0 16px;
  padding: var(--eyebrow-padding);
  border-radius: 999px;
  font-size: var(--eyebrow-size);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

p.eyebrow {
  background: var(--eyebrow-bg);
  color: var(--eyebrow-color);
}

.contact-method-card span,
.location-detail-links span {
  margin-bottom: 0;
}

.age-section .section-heading .eyebrow {
  background: rgba(255, 217, 135, 0.18);
  color: var(--yellow);
}

.cookie-consent__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="contact"] .contact-method-card span,
body[data-page="afspraak"] .appointment-options .contact-method-card span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

@media (max-width: 1100px) {
  .topbar__inner,
  .navbar,
  .hero__inner {
    width: min(100% - 32px, 720px);
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__link-optional,
  .topbar__right {
    display: none;
  }

  .navbar {
    min-height: 78px;
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    z-index: 260;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 240;
    display: grid;
    align-content: start;
    gap: 4px;
    width: 100vw;
    max-width: none;
    height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 22px 24px max(20px, calc(16px + env(safe-area-inset-bottom)));
    overflow-y: auto;
    color: var(--navy);
    background: var(--white);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1.02rem;
  }

  .nav-links a.nav-links__mobile-logo {
    display: flex;
    justify-content: center;
    width: min(250px, 72vw);
    margin: 0 auto 18px;
    padding: 0;
    border-bottom: 0;
  }

  .nav-links__mobile-logo img {
    width: 100%;
    height: 64px;
    object-fit: contain;
  }

  .nav-links a::after,
  .nav-dropdown__button::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    width: min(100%, 520px);
    margin: 0 auto;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-dropdown__button {
    justify-content: space-between;
    width: 100%;
    padding: 17px 0;
    font-size: 1.02rem;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 10px;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: block;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__menu a {
    width: 100%;
    padding: 11px 0 11px 18px;
    border-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
    transform: none;
  }

  .nav-dropdown__menu a::after {
    display: none;
  }

  .nav-dropdown__menu a:hover {
    background: rgba(50, 52, 111, 0.05);
    color: var(--navy);
    transform: none;
  }

  .appointment-link {
    display: none;
  }

  .nav-links__mobile-only {
    display: block;
  }

  .nav-links a.nav-links__appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(244, 124, 32, 0.28);
  }

  .nav-links a.nav-links__mobile-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 8px;
    padding: 0 22px;
    border: 2px solid rgba(50, 52, 111, 0.14);
    border-radius: 14px;
    background: var(--cream);
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
    box-shadow: none;
  }

  .nav-links__mobile-social {
    width: min(100%, 520px);
    margin: 8px auto 0;
    padding: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 9px;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-links__mobile-social a {
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
  }

  .nav-links__mobile-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "video"
      "content";
    padding: 52px 0 110px;
  }

  .hero-scene {
    min-height: 470px;
  }

  .hero-scene--video {
    min-height: auto;
  }

  .hero-video {
    max-width: 680px;
    margin: 0 auto;
  }

  .photo-stack--main {
    top: 8px;
    right: auto;
    left: 50%;
    width: min(430px, 82%);
    --base-x: -50%;
  }

  .metric-card {
    right: max(22px, calc((100% - 430px) / 2));
    bottom: 42px;
  }

  .age-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .about-therapy__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-therapy__image {
    max-height: 520px;
  }

  .insurance-strip__inner {
    width: min(100% - 32px, 720px);
    flex-wrap: wrap;
  }

  .quote-section__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .quote-section__photo {
    width: 178px;
    min-height: 128px;
  }

  .quote-section__photo img {
    width: 104px;
    height: 104px;
  }

  .quote-section blockquote {
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .quote-section blockquote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .age-section__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .age-story {
    min-height: auto;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  }

  .age-visual {
    width: min(100%, 540px);
    justify-self: center;
  }

  .age-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .age-option:hover,
  .age-option.is-active {
    transform: translateY(-6px);
  }

  .locations-section__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .locations-page-hero__inner,
  .locations-map-section__inner,
  .process-hero,
  .process-intro__inner,
  .specializations-section__inner,
  .reimbursement-section__inner,
  .rates-section__inner,
  .house-rules-section__inner,
  .privacy-section__inner,
  .payment-terms-section__inner,
  .location-card-grid {
    width: min(100% - 32px, 720px);
  }

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

  .location-refresh-hero__inner,
  .location-refresh-split__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .location-refresh-hero {
    padding: 58px 0 76px;
  }

  .location-refresh-hero__image {
    max-height: 560px;
  }

  .location-refresh-hero__highlights {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .location-refresh-section__inner,
  .location-refresh-photos__inner {
    width: min(100% - 32px, 720px);
  }

  .location-refresh-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-refresh-info-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .location-refresh-info-grid article:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
  }

  .location-refresh-info-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .location-refresh-insurance__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .location-refresh-insurance__inner > span {
    grid-row: 1;
  }

  .location-refresh-photos__inner {
    grid-template-columns: 1fr 1fr;
  }

  .location-refresh-photos img {
    height: 260px;
  }

  .location-refresh-photos img:nth-child(2) {
    margin-top: 0;
  }

  .location-refresh-photos img:first-child {
    grid-column: 1 / -1;
    height: 340px;
  }

  .specialization-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .specialization-filter {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .specialism-hero__inner,
  .specialism-article__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .specialism-sidebar {
    position: static;
    order: -1;
  }

  .specialism-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 76px;
  }

  .process-hero__image,
  .process-hero__image img {
    min-height: 420px;
  }

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

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

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

  .contact-method-section__inner {
    width: min(100% - 32px, 720px);
  }

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

  .contact-method-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-detail-intro__inner {
    grid-template-columns: 1fr;
  }

  .location-detail-guidance__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .location-detail-contact {
    grid-column: auto;
  }

  .location-detail-intro__image {
    grid-row: auto;
  }

  .appointment-page-hero__inner,
  .appointment-options__inner,
  .appointment-support__inner {
    width: min(100% - 32px, 720px);
  }

  .appointment-page-hero__inner {
    grid-template-columns: 1fr;
  }

  .appointment-support__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-intro__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-intro__inner > div:first-child {
    position: relative;
    top: auto;
  }

  .process-steps {
    gap: 14px;
    padding-bottom: 0;
  }

  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .process-step + .process-step {
    margin-top: 0;
  }

  .practice-voice__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .team-section__inner,
  .profile-section__inner,
  .profile-hero {
    width: min(100% - 32px, 720px);
  }

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

  .profile-hero,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .quality-section__inner,
  .qualizorg-section__inner {
    width: min(100% - 32px, 720px);
  }

  .quality-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quality-section__image img {
    height: 360px;
  }

  .qualizorg-card {
    grid-template-columns: 1fr;
  }

  .qualizorg-card__widget {
    max-width: 520px;
    justify-self: center;
  }

  .practice-voice__image img {
    height: 360px;
  }

  .location-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-widget {
    min-height: 470px;
  }

  .location-list {
    max-height: none;
  }

  .faq-section__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .faq-page__inner {
    width: min(100% - 32px, 720px);
  }

  .faq-image {
    max-height: 520px;
  }

  .final-cta__inner {
    width: min(100% - 32px, 720px);
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__column a,
  .site-footer__column span {
    overflow-wrap: anywhere;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    width: min(100% - 32px, 720px);
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  h1,
  h2,
  h3 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .section-heading {
    width: calc(100% - 28px);
    margin-bottom: 30px;
  }

  .quality-section .section-heading {
    width: 100%;
    margin-bottom: 0;
    text-align: left;
  }

  .section-heading h2,
  .locations-page-hero h1,
  .profile-hero h1,
  .final-cta h2,
  .faq-content h2,
  .about-therapy__content h2,
  .location-refresh-heading h2,
  .location-refresh-split h2,
  .location-refresh-insurance h2,
  .process-intro h2,
  .practice-voice h2,
  .appointment-support h2,
  .profile-story h2,
  .profile-facts h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .btn {
    min-height: 52px;
    padding-inline: 18px;
    white-space: normal;
  }

  .hero__actions,
  .final-cta__inner,
  .location-detail-map__actions,
  .profile-actions,
  .appointment-page-hero__actions,
  .process-hero__actions {
    gap: 12px;
  }

  .brand {
    width: 210px;
    height: 62px;
  }

  .brand img {
    object-fit: contain;
  }

  .hero__inner {
    width: calc(100% - 28px);
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .hero h1 .hero-title__desktop {
    display: none;
  }

  .hero h1 .hero-title__mobile {
    display: inline;
    padding: 0;
  }

  .hero h1 span {
    padding-inline: 10px;
  }

  .hero h1 .hero-title__mobile {
    padding: 0;
  }

  .hero__text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-scene {
    min-height: 390px;
  }

  .hero-scene--video {
    min-height: auto;
  }

  .hero-video::before {
    top: -14px;
    right: -8px;
    width: 78px;
  }

  .hero-video__frame {
    border-width: 7px;
    border-radius: 26px 26px 62px 26px;
  }

  .hero-video figcaption {
    width: calc(100% - 28px);
    margin-top: -12px;
    padding: 14px 16px 15px;
    border-radius: 16px 16px 28px 16px;
  }

  .hero-video figcaption > span:last-child {
    font-size: 0.82rem;
  }

  .photo-stack--main {
    top: 0;
    width: min(88%, 330px);
    border-width: 7px;
    border-radius: 30px 30px 76px 30px;
  }

  .metric-card {
    right: 8px;
    bottom: 42px;
    max-width: 170px;
    padding: 13px 14px;
  }

  .hero-wave {
    height: 118px;
  }

  .metric-card strong {
    font-size: 1.2rem;
  }

  .metric-card span {
    font-size: 0.78rem;
  }

  .age-section {
    padding: 72px 0 64px;
  }

  .about-therapy {
    padding: 66px 0 24px;
  }

  .about-therapy__inner {
    width: calc(100% - 28px);
  }

  .about-therapy__image {
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .about-therapy__content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .insurance-strip {
    padding-bottom: 22px;
  }

  .insurance-strip__inner {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .quote-section {
    padding: 34px 0;
  }

  .quote-section__inner {
    width: calc(100% - 28px);
    padding: 26px 22px;
  }

  .quote-section__photo {
    width: 162px;
    min-height: 116px;
  }

  .quote-section__photo img {
    width: 96px;
    height: 96px;
    border-width: 5px;
  }


  .age-section__inner {
    width: calc(100% - 28px);
    gap: 28px;
  }

  .age-story {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 24px;
  }

  .age-story h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .age-story__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 20px 20px 56px 20px;
  }

  .age-story p:not(.eyebrow) {
    font-size: 1rem;
  }

  .age-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .age-visual {
    display: none;
  }

  .age-stepper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }

  .age-stepper__button {
    width: 100%;
  }

  .age-option {
    border-radius: 20px;
  }

  .locations-section {
    padding: 72px 0;
  }

  .locations-section__inner {
    width: calc(100% - 28px);
  }

  .map-widget {
    min-height: 390px;
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .location-finder {
    padding: 18px;
    border-radius: 22px;
  }

  .locations-page-hero {
    padding: 68px 0 44px;
  }

  .location-refresh-hero {
    padding: 44px 0 58px;
  }

  .location-refresh-hero__inner,
  .location-refresh-section__inner,
  .location-refresh-split__inner,
  .location-refresh-photos__inner,
  .location-refresh-insurance__inner {
    width: calc(100% - 28px);
  }

  .location-refresh-hero__image,
  .location-refresh-split__image {
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .location-refresh-hero__image {
    aspect-ratio: 16 / 10;
  }

  .location-refresh-hero__image img,
  .location-refresh-split__image img {
    min-height: 0;
    height: 280px;
  }

  .location-refresh-hero__image img {
    height: 100%;
  }

  .location-refresh-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .location-refresh-hero__actions,
  .location-refresh-split__content .btn,
  .location-refresh-insurance .btn {
    width: 100%;
  }

  .location-refresh-hero__actions {
    flex-direction: column;
  }

  .location-refresh-section {
    padding: 54px 0 24px;
  }

  .location-refresh-info-grid,
  .location-refresh-photos__inner {
    grid-template-columns: 1fr;
  }

  .location-refresh-info-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
    min-height: auto;
  }

  .location-refresh-info-grid article:nth-child(odd) {
    border-right: 0;
  }

  .location-refresh-info-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .location-refresh-info-grid article:last-child {
    border-bottom: 0;
  }

  .location-refresh-split {
    padding: 44px 0 56px;
  }

  .location-refresh-insurance {
    padding-bottom: 54px;
  }

  .location-refresh-insurance__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    max-width: 100%;
    padding: 24px;
    border-radius: 24px;
    overflow: hidden;
  }

  .location-refresh-insurance__inner > span {
    grid-row: 1;
    width: 58px;
    height: 58px;
    font-size: 1.65rem;
  }

  .location-refresh-insurance h2 {
    max-width: 100%;
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .location-refresh-insurance p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .location-refresh-insurance .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .location-refresh-photos {
    padding-bottom: 54px;
  }

  .location-refresh-photos img,
  .location-refresh-photos img:first-child {
    height: 240px;
  }

  .page-jump-links {
    flex-direction: column;
    align-items: stretch;
  }

  .location-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .locations-page-hero__inner,
  .locations-map-section__inner,
  .process-hero,
  .process-intro__inner,
  .specializations-section__inner,
  .reimbursement-section__inner,
  .rates-section__inner,
  .house-rules-section__inner,
  .privacy-section__inner,
  .payment-terms-section__inner,
  .contact-method-section__inner,
  .location-card-grid {
    width: calc(100% - 28px);
  }

  .process-hero {
    padding: 44px 0 58px;
  }

  .specializations-section {
    padding: 44px 0 64px;
  }

  .specialism-hero {
    padding: 44px 0 50px;
  }

  .specialism-hero__inner,
  .specialism-article__inner {
    width: calc(100% - 28px);
  }

  .specialism-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .specialism-hero__image {
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .specialism-meta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .specialism-meta div:last-child {
    grid-column: 1 / -1;
  }

  .specialism-article {
    padding: 42px 0 68px;
  }

  .specialism-sidebar nav {
    grid-template-columns: 1fr;
  }

  .specialism-block {
    padding-bottom: 34px;
  }

  .specialism-block h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .specialism-block + .specialism-block {
    padding-top: 34px;
  }

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

  .specialization-filter {
    padding: 20px;
    border-radius: 22px;
  }

  .specialization-filter fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialization-filter__header {
    grid-column: 1 / -1;
  }

  .specialization-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 0;
  }

  .specialization-card img,
  .specialization-card__placeholder {
    width: 116px;
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }

  .specialization-card__content {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 14px;
  }

  .specialization-card h3,
  .specialization-card p {
    grid-column: 1;
  }

  .specialization-card h3 {
    font-size: clamp(1.12rem, 5vw, 1.32rem);
  }

  .specialization-card p {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .specialization-card__cue {
    display: none;
  }

  .process-hero__image {
    min-height: 330px;
    border-radius: 26px 26px 78px 26px;
  }

  .process-hero__image::after {
    inset: 12px;
    border-radius: 18px 18px 62px 18px;
  }

  .process-hero__image img {
    min-height: 330px;
  }

  .process-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .process-hero__actions {
    flex-direction: column;
  }

  .reimbursement-section {
    padding: 54px 0 30px;
  }

  .reimbursement-note {
    padding: 24px;
    border-radius: 24px;
  }

  .rates-section {
    padding: 30px 0 68px;
  }

  .rates-table-wrap {
    overflow-x: visible;
  }

  .rates-table {
    min-width: 0;
    table-layout: fixed;
  }

  .rates-table th,
  .rates-table td {
    padding: 14px 12px;
    font-size: 0.9rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    vertical-align: top;
  }

  .rates-table th:last-child,
  .rates-table td:last-child {
    width: 72px;
    white-space: normal;
  }

  .rates-footnotes {
    padding: 20px;
    border-radius: 22px;
  }

  .house-rules-section {
    padding: 54px 0 30px;
  }

  .privacy-section {
    padding: 30px 0;
  }

  .payment-terms-section {
    padding: 30px 0 68px;
  }

  #payment-terms-title {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .rules-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-method-section {
    padding: 56px 0 58px;
  }

  .contact-method-card {
    padding: 24px;
    border-radius: 24px;
  }

  .location-detail-intro {
    padding: 56px 0 34px;
  }

  .location-detail-intro__inner,
  .location-detail-guidance__inner,
  .location-detail-map__inner {
    width: calc(100% - 28px);
  }

  .location-detail-intro__image,
  .location-detail-intro__content,
  .location-detail-contact,
  .location-map-embed {
    border-radius: 24px;
  }

  .location-detail-intro__image img {
    height: 300px;
    min-height: 300px;
  }

  .location-detail-intro__content,
  .location-detail-contact {
    padding: 24px;
  }

  .location-detail-map {
    padding: 34px 0 58px;
  }

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

  .map-widget--detail {
    min-height: 360px;
    border-radius: 24px;
  }

  .location-map-selector {
    padding: 22px;
    border-radius: 24px;
  }

  .location-detail-guidance {
    padding: 26px 0 46px;
  }

  .location-detail-links {
    grid-template-columns: 1fr;
  }

  .location-detail-links a {
    padding: 18px;
    border-radius: 20px;
  }

  .location-photo-slider {
    width: calc(100% - 28px);
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-color: rgba(50, 52, 111, 0.22) transparent;
  }

  .location-photo-slider__track {
    display: flex;
    gap: 12px;
    min-height: 0;
    min-width: max-content;
  }

  .location-photo-slider img {
    position: static;
    flex: 0 0 74vw;
    height: 210px;
    border-radius: 20px;
    transform: none;
  }

  .location-photo-slider img:first-child,
  .location-photo-slider img:nth-child(2),
  .location-photo-slider img:nth-child(3),
  .location-photo-slider img:nth-child(4),
  .location-photo-slider img:nth-child(5),
  .location-photo-slider img:last-child {
    width: auto;
    transform: none;
  }

  .location-photo-slider img:hover {
    transform: translateY(-4px);
  }

  .location-map-embed,
  .location-map-embed iframe {
    min-height: 340px;
    height: 340px;
  }

  .location-detail-map__actions {
    flex-direction: column;
  }

  .appointment-page-hero {
    padding: 58px 0 66px;
  }

  .appointment-page-hero__inner,
  .appointment-options__inner,
  .appointment-support__inner {
    width: calc(100% - 28px);
  }

  .appointment-page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .appointment-page-hero__actions {
    flex-direction: column;
  }

  .appointment-summary {
    padding: 24px;
    border-radius: 24px;
  }

  .appointment-options {
    padding: 58px 0;
  }

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

  .appointment-options--compact .contact-method-card {
    padding: 20px;
  }

  .appointment-support {
    padding-bottom: 72px;
  }

  .appointment-support__inner {
    padding: 28px 24px;
    border-radius: 26px;
  }

  .rules-card h3 {
    font-size: 1.55rem;
  }

  .process-intro {
    padding: 58px 0 68px;
  }

  .practice-voice {
    padding-bottom: 72px;
  }

  .practice-voice__inner {
    width: calc(100% - 28px);
    gap: 26px;
    padding: 22px;
    border-radius: 26px;
  }

  .team-section,
  .profile-section {
    padding: 54px 0 72px;
  }

  .team-section__inner,
  .profile-section__inner,
  .profile-hero {
    width: calc(100% - 28px);
  }

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

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

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

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

  .team-card img {
    height: 300px;
    min-height: 0;
  }

  .team-card__placeholder {
    height: 300px;
    min-height: 0;
  }

  .profile-hero {
    padding: 44px 0 58px;
  }

  .profile-hero__image {
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .profile-hero__image img {
    height: 360px;
  }

  .profile-actions {
    flex-direction: column;
  }

  .profile-story,
  .profile-facts {
    padding: 24px;
    border-radius: 24px;
  }

  body[data-page="verhaal"] .locations-page-hero {
    padding: 46px 0 34px;
  }

  body[data-page="verhaal"] .locations-page-hero__inner,
  body[data-page="verhaal"] .profile-section__inner {
    width: calc(100% - 32px);
    max-width: 560px;
  }

  body[data-page="verhaal"] .locations-page-hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  body[data-page="verhaal"] .locations-page-hero p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.55;
  }

  body[data-page="verhaal"] .profile-section {
    padding: 34px 0 58px;
  }

  body[data-page="verhaal"] .profile-layout,
  body[data-page="verhaal"] .profile-story,
  body[data-page="verhaal"] .profile-facts {
    min-width: 0;
  }

  body[data-page="verhaal"] .profile-story,
  body[data-page="verhaal"] .profile-facts {
    gap: 14px;
    padding: 20px;
    border-radius: 18px;
  }

  body[data-page="verhaal"] .profile-story h2,
  body[data-page="verhaal"] .profile-facts h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  body[data-page="verhaal"] .profile-story p,
  body[data-page="verhaal"] .profile-facts li {
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .quality-section {
    padding-bottom: 72px;
  }

  .qualizorg-section {
    padding-bottom: 72px;
  }

  .quality-section__inner,
  .qualizorg-section__inner {
    width: calc(100% - 28px);
  }

  .quality-card {
    max-width: none;
  }

  .quality-section__image img {
    height: 300px;
  }

  .qualizorg-card {
    gap: 24px;
  }

  .qualizorg-card__widget {
    height: 340px;
  }

  .practice-voice__image {
    border-radius: 20px 20px 64px 20px;
  }

  .practice-voice__image img {
    height: 300px;
  }

  .locations-map-section {
    padding: 34px 0 58px;
  }

  .location-overview {
    padding: 68px 0 72px;
  }

  .location-card-grid {
    grid-template-columns: 1fr;
  }

  .location-card__actions {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-section__inner {
    width: calc(100% - 28px);
    gap: 32px;
  }

  .faq-page__inner {
    width: calc(100% - 28px);
  }

  .faq-content__button {
    width: 100%;
  }

  .faq-list summary {
    padding: 18px;
    font-size: 1.08rem;
  }

  .faq-list details > p {
    padding: 0 18px 18px;
  }

  .faq-image {
    border-width: 7px;
    border-radius: 28px 28px 78px 28px;
  }

  .final-cta {
    padding-bottom: 72px;
  }

  .final-cta__inner {
    width: calc(100% - 28px);
    padding: 32px 26px;
    border-radius: 26px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 8px;
    min-height: 52px;
    padding: 0 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }

  .site-footer__inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0 36px;
  }

  .site-footer__bottom {
    width: calc(100% - 28px);
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 72px;
  }
}

@media (max-width: 420px) {
  body[data-page="verhaal"] .locations-page-hero__inner,
  body[data-page="verhaal"] .profile-section__inner {
    width: calc(100% - 24px);
  }

  body[data-page="verhaal"] .profile-story,
  body[data-page="verhaal"] .profile-facts {
    padding: 16px;
    border-radius: 16px;
  }

  .specialization-card {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .specialization-card img,
  .specialization-card__placeholder {
    width: 94px;
    min-height: 122px;
  }

  .specialization-card__content {
    padding: 12px;
  }
}

@media (max-width: 1100px) {
  .specialism-hero--voorkeurshouding .specialism-hero__image {
    order: -1;
  }
}

@media (max-width: 620px) {
  .specialism-hero h1.specialism-title--compact {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
    line-height: 1;
  }
}

/* Consistente leesbaarheid voor alle specialismepagina's. */
body[data-page="specialisaties"] .specialism-content .specialism-block p,
body[data-page="specialisaties"] .specialism-content .specialism-block li {
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.8;
}
body[data-page="specialisaties"] .specialism-content .specialism-block h2 {
  margin-bottom: 24px;
}
body[data-page="specialisaties"] .specialism-content .specialism-block p + p {
  margin-top: 22px;
}
body[data-page="specialisaties"] .specialism-content .specialism-block ul,
body[data-page="specialisaties"] .specialism-content .specialism-block ol {
  margin: 26px 0;
  padding-left: 26px;
}
body[data-page="specialisaties"] .specialism-content .specialism-block li {
  padding-left: 6px;
}
body[data-page="specialisaties"] .specialism-content .specialism-block li + li {
  margin-top: 16px;
}
body[data-page="specialisaties"] .specialism-content .specialism-block li::marker {
  color: var(--navy);
}
