/* ========================================================================
   KineKracht.be — Design 02: "Organic Flow"
   Soft organic shapes, flowing curves, nature-inspired healing aesthetic
   ======================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --navy: #203965;
  --navy-hover: #1b3460;
  --navy-deep: #1a2e52;
  --navy-light: #2a4a80;
  --navy-tint: #E8EDF5;
  --navy-tint-soft: #EEF2F8;
  --gold: #aeaa8b;
  --gold-light: #c4c1a8;
  --gold-soft: #d4d1bc;
  --gold-tint: #F5F4EE;
  --cream: #F5F8FB;
  --white: #ffffff;
  --text: #464646;
  --muted: #838383;
  --shadow-soft: 0 20px 60px rgba(32, 57, 101, 0.08);
  --shadow-medium: 0 12px 40px rgba(32, 57, 101, 0.12);
  --shadow-hover: 0 24px 70px rgba(32, 57, 101, 0.16);
  --shadow-gold: 0 12px 40px rgba(174, 170, 139, 0.2);
  --radius-blob: 40% 60% 70% 30% / 60% 40% 30% 70%;
  --radius-blob-alt: 60% 40% 30% 70% / 40% 60% 70% 30%;
  --radius-blob-soft: 50% 50% 40% 60% / 60% 50% 50% 40%;
  --radius-card: 24px;
  --radius-pill: 100px;
  --radius-round: 50%;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  position: relative;
  width: 100%;
}

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

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

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1400px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* --- Section --- */
.section {
  padding: 100px 0;
  position: relative;
}

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

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.8);
}

.section--gold-tint {
  background: var(--gold-tint);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__header p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 16px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* --- Organic Blob Decorations --- */
.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
}

.blob--navy {
  background: rgba(32, 57, 101, 0.04);
}

.blob--gold {
  background: rgba(174, 170, 139, 0.08);
}

.blob--cream {
  background: var(--cream);
}

.blob--navy-solid {
  background: var(--navy-tint);
}

/* --- Wave Dividers --- */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-divider--top {
  top: -1px;
}

.wave-divider--bottom {
  bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--tall svg {
  height: 80px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 80px;
  }
  .wave-divider--tall svg {
    height: 120px;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--navy-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(32, 57, 101, 0.06);
}

.nav--scrolled {
  box-shadow: 0 4px 30px rgba(32, 57, 101, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 80px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  background: var(--navy-tint);
  color: var(--navy);
}

.nav__links .btn {
  margin-left: 8px;
}

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
}

.nav__cta:hover {
  background: var(--navy-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: var(--transition);
}

.nav__hamburger:hover {
  background: var(--navy-tint);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}

.nav__mobile.open {
  display: block;
  animation: fadeSlideDown 0.3s ease;
}

.nav__mobile a:not(.btn) {
  display: block;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 16px;
  margin-bottom: 4px;
}

.nav__mobile a:not(.btn):hover {
  background: var(--navy-tint);
}

.nav__mobile .btn {
  display: flex;
  width: 100%;
  margin-top: 16px;
  justify-content: center;
  padding: 18px 24px;
  font-size: 1.05rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 140px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--navy-tint-soft) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__title-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title-kicker::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  min-width: 0;
}

.hero__image-wrapper {
  position: relative;
  width: 700px;
  flex-shrink: 0;
  aspect-ratio: 5 / 3.15;
}

.hero__image {
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 52% 48% 42% 58% / 58% 42% 52% 48%;
  box-shadow: var(--shadow-soft);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__blob-1 {
  position: absolute;
  width: 115%;
  height: 115%;
  top: -7%;
  left: -7%;
  border-radius: 48% 52% 45% 55% / 55% 45% 50% 50%;
  background: var(--navy-tint);
  z-index: -1;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero__blob-2 {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -10%;
  left: -30px;
  border-radius: var(--radius-blob);
  background: var(--gold);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite reverse;
}

.hero__blob-3 {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -5%;
  right: -15px;
  border-radius: var(--radius-blob-alt);
  background: var(--navy);
  opacity: 0.08;
  animation: blobFloat 10s ease-in-out infinite;
}

/* Decorative blobs floating in hero background */
.hero__bg-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
}

.hero__bg-blob--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(174, 170, 139, 0.06);
  animation: blobFloat 15s ease-in-out infinite;
}

.hero__bg-blob--2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  background: rgba(32, 57, 101, 0.04);
  border-radius: var(--radius-blob-alt);
  animation: blobFloat 12s ease-in-out infinite reverse;
}

/* --- Team Hero Photo --- */
.team-hero-photo {
  position: relative;
  width: 700px;
  max-width: 100%;
  aspect-ratio: 5 / 3.15;
  margin: 0 auto;
}

.team-hero-photo__blob {
  position: absolute;
  width: 115%;
  height: 115%;
  top: -7%;
  left: -7%;
  border-radius: 48% 52% 45% 55% / 55% 45% 50% 50%;
  background: var(--navy-tint);
  z-index: 0;
}

.team-hero-photo__img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 52% 48% 42% 58% / 58% 42% 52% 48%;
  box-shadow: var(--shadow-soft);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-card__image-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 55% 50% 50% 45%;
  box-shadow: 0 8px 30px rgba(32, 57, 101, 0.12);
}

.team-card__blob {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  background: var(--navy-tint);
  z-index: -1;
}

.team-card__name {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.section--navy .team-card__name {
  color: var(--navy);
}

.section--navy .team-card__role {
  color: var(--gold);
}

.team-card__specialties {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.team-card__specialties li {
  font-size: 0.78rem;
  padding: 5px 14px;
  background: var(--navy-tint);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* --- Specializations Grid --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.spec-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.spec-card:hover::before {
  opacity: 1;
}


.spec-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.spec-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Feature / Mums & Bubs --- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature__image-wrapper {
  position: relative;
}

.feature__image {
  width: 100%;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  box-shadow: var(--shadow-soft);
}

.feature__image-blob {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 35% 65% 55% 45% / 45% 35% 65% 55%;
  background: var(--gold);
  opacity: 0.08;
  z-index: -1;
}

.feature__content {
  max-width: 480px;
}

.feature__content h2 {
  margin-bottom: 20px;
}

.feature__content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card__overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-card__title a,
.blog-card__author-link {
  position: relative;
  z-index: 2;
}

.blog-card__author-link {
  color: inherit;
  text-decoration: none;
}

.blog-card__author-link:hover,
.blog-card__author-link:focus {
  text-decoration: underline;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-tint-soft);
}

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

.blog-card__image svg {
  width: 48px;
  height: 48px;
}

.blog-card__body {
  padding: 28px;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--navy);
}

.blog-card__title a:hover {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Category Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.category-pill {
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy-tint);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta__blob-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  top: -100px;
  right: -50px;
  border-radius: var(--radius-blob);
  background: rgba(174, 170, 139, 0.12);
  animation: blobFloat 14s ease-in-out infinite;
}

.cta__blob-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -40px;
  border-radius: var(--radius-blob-alt);
  background: rgba(255, 255, 255, 0.05);
  animation: blobFloat 10s ease-in-out infinite reverse;
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: block;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 90px;
  width: auto;
}

.footer__brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 24px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__service-area {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 6px;
  text-align: center;
  font-size: 0.85rem;
}

.footer__service-area p {
  margin: 0;
  color: var(--gold);
}

.footer__bottom {
  padding: 10px 0 24px;
  text-align: center;
  font-size: 0.82rem;
}

.footer__bottom p {
  color: var(--gold);
}

.footer__bottom a {
  color: var(--gold);
}

/* --- Page Header --- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header__blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  border-radius: var(--radius-blob);
  background: rgba(174, 170, 139, 0.08);
  animation: blobFloat 14s ease-in-out infinite;
}

.page-header__blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  border-radius: var(--radius-blob-alt);
  background: rgba(255, 255, 255, 0.03);
  animation: blobFloat 10s ease-in-out infinite reverse;
}

/* --- Therapist Profile Cards --- */
.therapist-profile {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid var(--navy-tint);
}

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

.therapist-profile:nth-child(even) {
  direction: rtl;
}

.therapist-profile:nth-child(even) > * {
  direction: ltr;
}

.therapist-profile__visual {
  position: relative;
}

.therapist-profile__image {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  box-shadow: var(--shadow-soft);
}

.therapist-profile__blob {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 50% 50% 45% 55% / 55% 50% 50% 45%;
  z-index: -1;
}

.therapist-profile:nth-child(1) .therapist-profile__blob {
  background: var(--navy-tint);
}

.therapist-profile:nth-child(2) .therapist-profile__blob {
  background: var(--gold-tint);
}

.therapist-profile:nth-child(3) .therapist-profile__blob {
  background: var(--navy-tint);
}

.therapist-profile__info h2 {
  margin-bottom: 8px;
}

.therapist-profile__role {
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 20px;
}

.therapist-profile__bio {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.therapist-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.therapist-profile__tag {
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--navy-tint);
  color: var(--navy);
  border-radius: var(--radius-pill);
}

/* --- Spec Detail Cards (specialisaties page) --- */
/* ==========================================================================
   Specialization Detail Page (sd- prefix)
   ========================================================================== */

/* --- Intro Card --- */
.sd-intro {
  padding: 48px 52px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.sd-intro__flex {
  display: flex;
  gap: 44px;
  align-items: flex-start;
}

.sd-intro__text {
  flex: 1;
  min-width: 0;
}

.sd-intro__text p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 0 0 18px 0;
}

.sd-intro__text p:last-child {
  margin-bottom: 0;
}

.sd-intro__image {
  flex: 0 0 300px;
}

.sd-intro__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(32, 57, 101, 0.15);
}

/* --- Benefits --- */
.sd-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-tint);
}

.sd-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

.sd-benefits__check {
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Content Sections --- */
.sd-section {
  max-width: 820px;
  margin: 0 auto;
}

.sd-section__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--navy);
  margin: 0 0 24px 0;
  line-height: 1.3;
}

.sd-section__body {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.85;
}

.sd-section__body p {
  margin: 0 0 18px 0;
}

.sd-section__body p:last-child {
  margin-bottom: 0;
}

.sd-section__body strong {
  color: var(--navy);
  font-weight: 600;
}

.sd-section__body ul,
.sd-section__body ol {
  margin: 18px 0;
  padding-left: 24px;
}

.sd-section__body li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.sd-section__body li::marker {
  color: var(--gold);
}

/* Images within section content — float right on desktop */
.sd-section__body img,
.sd-section__body .spec-content-image {
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(32, 57, 101, 0.12);
  float: right;
  margin: 6px 0 24px 32px;
  shape-margin: 20px;
}

/* Standalone fallback for extracted intro images */
.spec-content-image {
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(32, 57, 101, 0.12);
}

/* --- FAQ Accordion --- */
.sd-faq {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 48px 52px;
  max-width: 820px;
  margin: 0 auto;
}

.sd-faq__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.sd-faq__item {
  border-bottom: 1px solid var(--navy-tint);
}

.sd-faq__item:last-child {
  border-bottom: none;
}

.sd-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.sd-faq__question:hover {
  color: var(--navy-light);
}

.sd-faq__chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-faq__item.is-open .sd-faq__chevron {
  transform: rotate(180deg);
}

.sd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
  padding: 0 0 0 0;
}

.sd-faq__item.is-open .sd-faq__answer {
  max-height: 600px;
  padding: 0 0 24px 0;
}

.sd-faq__answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* --- Specializations Grid (index page) --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.spec-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.spec-card:hover::before {
  opacity: 1;
}

.spec-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.spec-card:hover .spec-card__icon {
  background: var(--navy);
}

.spec-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.spec-card:hover .spec-card__icon svg {
  stroke: var(--white);
}

.spec-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.spec-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

.spec-card__therapists {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-tint);
}

.spec-card__therapists span {
  color: var(--muted);
  font-weight: 400;
}

/* Stretched title link: the whole card is clickable via ::after overlay,
   while individual therapist links sit on top via z-index. */
.spec-card__link {
  color: inherit;
  text-decoration: none;
}

.spec-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-card);
}

.spec-card__link:focus-visible {
  outline: none;
}

.spec-card__link:focus-visible::after {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.spec-card__therapist-link {
  position: relative;
  z-index: 2;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.spec-card__therapist-link:hover,
.spec-card__therapist-link:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

/* --- Booking Steps --- */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: sticky;
  top: 100px;
  z-index: 100;
  background: var(--cream);
  padding: 20px 0;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--navy-tint);
  z-index: 0;
}

.booking-steps::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-tint), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-steps--stuck::after {
  opacity: 1;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.booking-step__circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background: var(--white);
  border: 2px solid var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--muted);
  transition: var(--transition);
}

.booking-step.active .booking-step__circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(32, 57, 101, 0.25);
}

.booking-step.completed .booking-step__circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.booking-step__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.booking-step.active .booking-step__label {
  color: var(--navy);
  font-weight: 600;
}

/* Treatment Selection Cards */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.treatment-card {
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--navy-tint);
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.treatment-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.treatment-card.selected {
  border-color: var(--navy);
  background: var(--navy-tint);
  box-shadow: var(--shadow-soft);
}

.treatment-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-card.selected .treatment-card__icon {
  background: var(--navy);
}

.treatment-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.treatment-card.selected .treatment-card__icon svg {
  stroke: var(--white);
}

.treatment-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* --- Organic Form Styles --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--navy-tint);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  outline: none;
}

.form-textarea {
  border-radius: var(--radius-card);
  resize: vertical;
  min-height: 140px;
  padding: 18px 24px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(32, 57, 101, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Contact Info Cards --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  margin-bottom: 20px;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-card__title {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-info-card__text a {
  color: var(--navy);
  font-weight: 500;
}

/* Map placeholder */
.map-blob {
  width: 100%;
  height: 400px;
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.map-blob iframe {
  width: 150%;
  height: 150%;
  border: none;
  position: absolute;
  top: -25%;
  left: -25%;
}

.map-blob__placeholder {
  text-align: center;
  color: var(--navy);
}

.map-blob__placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1;
  opacity: 0.3;
  margin-bottom: 12px;
}

.map-blob__placeholder p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- Blog Page Specifics --- */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.blog-card--featured .blog-card__image {
  height: 100%;
  min-height: 280px;
}

.blog-card--featured .blog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.blog-card--featured .blog-card__title {
  font-size: 1.5rem;
}

/* Pagination */
#blog-grid {
  scroll-margin-top: 120px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}

.pagination li {
  list-style: none;
}

.pagination a,
.pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.pagination a {
  color: var(--navy);
  border: 2px solid var(--navy-tint);
}

.pagination a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pagination .active {
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--white);
}

/* --- IntersectionObserver Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* --- Keyframe Animations --- */
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -15px) rotate(2deg); }
  50% { transform: translate(-5px, 10px) rotate(-1deg); }
  75% { transform: translate(8px, 5px) rotate(1.5deg); }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- Scroll to Top Button --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy-hover);
  transform: translateY(-4px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__subtitle {
    margin: 0 auto 36px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__visual {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__image-wrapper {
    width: 100%;
    aspect-ratio: auto;
  }

  /* Padding-bottom aspect-ratio — aspect-ratio collapses inside the
     flex parent on small viewports, so fall back to this below 1024px. */
  .hero__image-wrapper::before {
    content: '';
    display: block;
    padding-bottom: 63%;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature--reverse {
    direction: ltr;
  }

  .feature__content {
    max-width: 100%;
    margin: 0 auto;
  }

  .feature__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .therapist-profile {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .therapist-profile:nth-child(even) {
    direction: ltr;
  }

  .therapist-profile__image {
    margin: 0 auto;
    max-width: 280px;
  }

  .therapist-profile__tags {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

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

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

  .blog-card--featured .blog-card__image {
    height: 200px;
    min-height: auto;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .booking-steps::before {
    display: none;
  }

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

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

  .hero__title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-header {
    padding: 120px 0 72px;
  }

  .hero {
    padding: 140px 0 120px;
  }

  .sd-intro {
    padding: 28px 24px;
  }

  .sd-intro__flex {
    flex-direction: column;
  }

  .sd-intro__image {
    flex: 0 0 auto;
    text-align: center;
    order: -1;
  }

  .sd-intro__image img {
    max-width: 100%;
    border-radius: 16px;
  }

  .sd-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sd-section__body img,
  .sd-section__body .spec-content-image {
    float: none;
    display: block;
    max-width: 100%;
    margin: 16px auto;
    shape-margin: 0;
  }

  .sd-faq {
    padding: 28px 24px;
  }

  .sd-faq__question {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .hero__bg-blob--1,
  .hero__bg-blob--2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    text-align: center;
  }

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

  .booking-step__label {
    font-size: 0.72rem;
  }

  .team-card {
    padding: 32px 20px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* --- Booking Date/Time Grid --- */
.booking-datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .booking-datetime-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Booking Calendar --- */
.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-calendar__weekday {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.booking-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  border-radius: 50%;
  cursor: default;
  color: var(--muted);
  transition: 0.2s ease;
}

.booking-calendar__day--available {
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
}

.booking-calendar__day--available:hover {
  background: var(--navy-tint);
}

.booking-calendar__day--today {
  border: 1px solid var(--gold);
}

.booking-calendar__day--selected {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.booking-calendar__day--selected:hover {
  background: var(--navy-hover);
}

.booking-calendar__day--past {
  color: var(--navy-tint);
  cursor: default;
}

/* --- Print --- */
@media print {
  .nav,
  .scroll-top,
  .cta,
  .wave-divider {
    display: none !important;
  }

  .section {
    padding: 24px 0;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 48px 0;
  }
}

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

/* --- Accessibility: Focus Visible --- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ========================================================================
   Contact Page (beta)
   ======================================================================== */
.contact-section {
  position: relative;
  padding-top: 56px;
  padding-bottom: 100px;
  overflow: hidden;
}

.contact-section__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
}

.contact-section__blob--1 {
  width: 460px;
  height: 460px;
  top: -180px;
  right: -140px;
  background: rgba(174, 170, 139, 0.10);
}

.contact-section__blob--2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  left: -120px;
  background: rgba(32, 57, 101, 0.05);
  border-radius: var(--radius-blob-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  transition: var(--transition);
}

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

.contact-card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card__title svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-card__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.contact-card__text a {
  color: var(--navy);
  border-bottom: 1px solid var(--navy-tint);
  transition: color 0.3s, border-color 0.3s;
}

.contact-card__text a:hover,
.contact-card__text a:focus {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.contact-hours tr {
  border-bottom: 1px solid var(--gold-tint);
}

.contact-hours tr:last-child {
  border-bottom: none;
}

.contact-hours td {
  padding: 10px 0;
  color: var(--text);
}

.contact-hours td:first-child {
  color: var(--navy);
  font-weight: 500;
}

.contact-hours td:last-child {
  text-align: right;
  color: var(--muted);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  background: var(--navy-tint);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 36px 36px;
}

.contact-form-card__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 10px;
}

.contact-form-card__lead {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.contact-form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-form-status--success {
  background: rgba(174, 170, 139, 0.14);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.contact-form-status--error {
  background: rgba(200, 68, 68, 0.08);
  color: #a8302a;
  border: 1px solid rgba(200, 68, 68, 0.22);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form__field {
  margin-bottom: 18px;
}

.contact-form__row .contact-form__field {
  margin-bottom: 0;
}

.contact-form__row + .contact-form__field {
  margin-top: 18px;
}

.contact-form__field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--navy-tint);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(174, 170, 139, 0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form__submit {
  width: 100%;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form__submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-section {
    padding-top: 40px;
    padding-bottom: 72px;
  }
  .contact-card {
    padding: 24px 26px;
  }
  .contact-form-card {
    padding: 28px 24px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form__row .contact-form__field {
    margin-bottom: 18px;
  }
  .contact-form__row + .contact-form__field {
    margin-top: 0;
  }
  .contact-map {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .contact-card__title {
    font-size: 1.15rem;
  }
  .contact-form-card__title {
    font-size: 1.4rem;
  }
}

/* ========================================================================
   Blog post — article body typography, FAQ accordion, author bio
   ======================================================================== */

.article-content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
}

.article-content > p,
.article-content > ul,
.article-content > ol,
.article-content section > p,
.article-content section > ul,
.article-content section > ol {
  margin: 0 0 1.15em;
}

.article-content > h2,
.article-content section > h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 2.4em 0 0.7em;
}

.article-content > h3,
.article-content section > h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.175rem;
  line-height: 1.35;
  color: var(--navy);
  margin: 1.8em 0 0.55em;
  letter-spacing: -0.005em;
}

.article-content > h2:first-child,
.article-content > h3:first-child,
.article-content > p:first-child,
.article-content section:first-child > *:first-child {
  margin-top: 0;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4em;
}

.article-content li {
  margin: 0 0 0.55em;
  padding-left: 0.25em;
}

.article-content li::marker {
  color: var(--gold);
}

.article-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(174, 170, 139, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.article-content a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.article-content strong {
  color: var(--navy);
  font-weight: 600;
}

.article-content em { font-style: italic; }

.article-summary {
  background: var(--navy-tint-soft);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 22px 26px 22px 28px;
  margin: 0 0 2em;
}

.article-content section.article-summary > h2 {
  margin-top: 0;
}

.article-summary ul {
  margin: 0;
  padding-left: 1.2em;
}

.article-summary li {
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 0.45em;
}

.article-summary li:last-child { margin-bottom: 0; }

/* --- FAQ accordion --- */

.article-faq {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 32px 32px 12px;
}

.article-faq__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(32, 57, 101, 0.1);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-question > span { flex: 1; line-height: 1.45; }

.faq-question .fa-chevron-down {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0 0 18px;
  padding: 0 4px;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* --- Author bio ("Geschreven door") --- */

.author-bio {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid rgba(32, 57, 101, 0.09);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.author-bio__photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-bio__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.author-bio__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 2px;
}

.author-bio__name a {
  color: var(--navy);
  text-decoration: none;
}

.author-bio__name a:hover { color: var(--gold); }

.author-bio__title {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.author-bio__bio {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}

.author-bio__specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.author-bio__spec-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--navy-tint-soft);
  color: var(--navy);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.author-bio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Scoped button styles: author-bio template uses Bootstrap-style names
   (.btn-primary / .btn-outline) which aren't part of the Organic Flow
   base system (.btn--primary / .btn--secondary). Alias them here so the
   shared component works in both layouts without template changes. */
.author-bio .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.author-bio .btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.author-bio .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 640px) {
  .article-faq {
    padding: 24px 22px 8px;
  }
  .article-summary {
    padding: 18px 20px;
  }
  .author-bio {
    grid-template-columns: 1fr;
    padding: 22px 22px;
    text-align: left;
  }
  .author-bio__photo img {
    width: 72px;
    height: 72px;
  }
  .author-bio__actions .btn {
    flex: 1;
    min-width: 140px;
  }
}
