/* =========================================================
   Vanderhaegen Chiropractie — v2 stylesheet
   Refined wellness aesthetic. Palette anchored to logo
   taupe (#75605b). Sophisticated neutrals, generous space,
   soft shadows, large radii, subtle motion.
   ========================================================= */

:root {
  /* ---- Surfaces ---- */
  --bg:          #fdfbf6;   /* warm paper white */
  --paper:       #ffffff;   /* pure white for cards */
  --paper-2:     #ede3cd;   /* warm cream — for sand sections */
  --paper-3:     #f5efe0;   /* soft cream — for tinted sections */

  /* ---- Ink ---- */
  --ink:         #1f1812;   /* rich espresso */
  --ink-soft:    #3a2e25;
  --body:        #524740;
  --muted:       #8a7d72;
  --whisper:     #b8aba0;

  /* ---- Accents ---- */
  --taupe:       #75605b;   /* logo brand */
  --taupe-soft:  #a48f88;
  --champagne:   #cfb491;   /* warm highlight */
  --sage:        #8b9c8a;   /* quiet wellness green */
  --success:     #7a8f6e;

  /* ---- Hairlines & shadows ---- */
  --hairline:        rgba(31, 24, 18, 0.08);
  --hairline-soft:   rgba(31, 24, 18, 0.04);
  --shadow-sm:       0 1px 3px rgba(31, 24, 18, 0.03), 0 1px 2px rgba(31, 24, 18, 0.02);
  --shadow-md:       0 8px 24px rgba(31, 24, 18, 0.05), 0 2px 6px rgba(31, 24, 18, 0.03);
  --shadow-lg:       0 24px 56px rgba(31, 24, 18, 0.08), 0 6px 16px rgba(31, 24, 18, 0.04);
  --shadow-card:     0 1px 2px rgba(31, 24, 18, 0.03), 0 6px 20px rgba(31, 24, 18, 0.04);

  /* ---- Typography ---- */
  --serif:  "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ---- Layout ---- */
  --pad-x:        max(28px, min(88px, 6.2vw));
  --container:    1280px;

  /* ---- Radii ---- */
  --r-sm:    10px;
  --r-md:    16px;
  --r-lg:    24px;
  --r-xl:    32px;
  --r-pill:  999px;
}

/* ============ RESET ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* Bilingual toggle */
body[data-lang="nl"] [lang="en"] { display: none; }
body[data-lang="en"] [lang="nl"] { display: none; }

/* ============ MOTION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ TYPE ============ */
.h-display, .h1, .h2, .h3, .h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-display {
  font-size: clamp(56px, 9.5vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.h1 { font-size: clamp(48px, 7.5vw, 96px); line-height: 0.98; letter-spacing: -0.03em; }
.h2 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -0.025em; }
.h3 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; }
.h4 { font-size: 22px; line-height: 1.3; }

.italic { font-style: italic; color: var(--taupe); }

.kicker {
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--taupe);
}
.kicker-mono {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-num {
  font: 400 14px/1 var(--serif);
  font-style: italic;
  color: var(--taupe);
  letter-spacing: 0.02em;
}

.lead {
  font: 400 21px/1.55 var(--serif);
  color: var(--ink);
  font-style: italic;
  margin: 0;
  max-width: 56ch;
}
.body { font: 400 16.5px/1.7 var(--sans); color: var(--body); margin: 0; }
.body-sm { font: 400 14px/1.65 var(--sans); color: var(--body); margin: 0; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section--tinted   { background: var(--paper-3); }
.section--paper3   { background: var(--paper); }
.section--sand     { background: var(--paper-2); }
.section--dark     { background: var(--ink); color: #ede2c8; }
.section--dark .h2, .section--dark .h3 { color: #f5ead0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
@media (min-width: 880px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}
.section-head__title { max-width: none; width: 100%; }
.section-head__title .kicker { margin-bottom: 24px; }
.section-head__intro { color: var(--body); max-width: none; width: 100%; font-size: 17px; line-height: 1.7; }

/* Soft fade dividers between sections */
.fade-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font: 600 13px/1 var(--sans);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1),
              background .25s ease,
              color .25s ease,
              box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--taupe);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--taupe);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--accent:hover {
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}
.btn--ghost-dark {
  background: transparent;
  color: #f5ead0;
  border: 1px solid rgba(245, 234, 208, 0.25);
}
.btn--ghost-dark:hover {
  background: rgba(245, 234, 208, 0.08);
  border-color: rgba(245, 234, 208, 0.5);
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.03em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
  color: rgba(245, 234, 208, 0.78);
}
.topbar__left {
  display: flex; gap: 28px; align-items: center;
  flex-wrap: wrap;
}
.topbar__pill { display: inline-flex; align-items: center; gap: 10px; }
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(122, 143, 110, 0.4);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 143, 110, 0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(122, 143, 110, 0); }
}
@media (max-width: 720px) {
  .topbar__left:nth-child(2) { display: none; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 246, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
}
.nav.is-scrolled {
  background: rgba(253, 251, 246, 0.95);
  border-bottom-color: var(--hairline-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 24px;
  transition: padding .25s ease;
}
.nav.is-scrolled .nav__inner { padding: 14px 0; }

.brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: opacity .2s ease;
}
.brand:hover { opacity: 0.85; }
.brand__mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand__mark { transform: rotate(-4deg); }
.brand__mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand__mark--lg { width: 60px; height: 60px; }
.brand__wordmark {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
  font-weight: 500;
}
.brand__wordmark em { font-style: italic; color: var(--taupe); font-weight: 400; }
.brand__sub {
  display: block;
  font: 500 10.5px/1 var(--mono);
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-top: 6px;
  text-transform: uppercase;
}
.brand__partof {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font: 500 7px/1 var(--mono);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand__partof img { height: 14px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a:not(.btn) {
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color .2s ease;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--taupe);
  transition: width .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:not(.btn):hover { color: var(--taupe); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  background: var(--bg, #fff); border-radius: 12px; box-shadow: var(--shadow-md, 0 12px 32px rgba(0,0,0,.12));
  padding: 10px; display: flex; flex-direction: column; min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 4px); }
.nav__dropdown-menu a { padding: 9px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.nav__dropdown-menu a:hover { background: var(--paper-2, #f4f4f4); color: var(--taupe); }
.nav__divider { width: 1px; height: 16px; background: var(--hairline); }

.nav__mobile-toggle {
  display: none;
  appearance: none; border: 1px solid var(--hairline);
  background: transparent;
  width: 44px; height: 44px;
  border-radius: 12px;
  cursor: pointer;
}
.nav__mobile-toggle span,
.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
  display: block; height: 1.5px; background: var(--ink);
  margin: 0 auto;
}
.nav__mobile-toggle span { width: 18px; position: relative; }
.nav__mobile-toggle span::before,
.nav__mobile-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px;
}
.nav__mobile-toggle span::before { top: -6px; }
.nav__mobile-toggle span::after { top: 6px; }

@media (max-width: 980px) {
  .nav__links a:not(.btn) { display: none; }
  .nav__divider { display: none; }
  .nav__mobile-toggle { display: block; }
  .nav__links .lang, .nav__links a.btn { display: none; }
}

.nav__mobile-panel {
  display: none;
  padding: 18px 0 26px;
  border-top: 1px solid var(--hairline-soft);
}
.nav__mobile-panel.is-open { display: block; }
.nav__mobile-panel a:not(.btn) {
  display: block;
  padding: 14px 0;
  font: 500 18px/1 var(--serif);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-soft);
}
.nav__mobile-panel .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--taupe), var(--champagne));
  z-index: 200;
  transition: width 0.08s linear;
}

/* ============ LANGUAGE TOGGLE ============ */
.lang {
  display: inline-flex;
  background: var(--paper);
  border-radius: var(--r-pill);
  padding: 3px;
  border: 1px solid var(--hairline);
}
.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  font: 600 10.5px/1 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 24, 18, 0.55);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .25s ease;
}
.lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.lang--dark { background: rgba(245, 234, 208, 0.08); border-color: rgba(245, 234, 208, 0.18); }
.lang--dark button { color: rgba(245, 234, 208, 0.65); }
.lang--dark button[aria-pressed="true"] { background: var(--taupe); color: var(--paper); }

/* ============ HERO ============ */
.hero {
  padding: clamp(80px, 11vw, 140px) 0 clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

/* ===== Hero video variant ===== */
.hero--video {
  padding: 0;
  min-height: clamp(680px, 92vh, 960px);
  background: #14090a;
  display: flex;
  align-items: center;
  color: #f5ead0;
}
.hero--video .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 80px; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg__scene {
  width: 100%; height: 100%;
  display: block;
  filter: saturate(0.92);
}
.hero-bg__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  display: block;
  filter: saturate(0.9) brightness(1.0) contrast(1.0);
}
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(15, 8, 5, 0.62) 0%, rgba(15, 8, 5, 0.38) 50%, rgba(15, 8, 5, 0.16) 100%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(15, 8, 5, 0.38), transparent),
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(15, 8, 5, 0.28), transparent);
  z-index: 1;
}
.hero-bg__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, #fff 0.7px, transparent 1.3px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.hero--video .h-display,
.hero--video .hero__title { color: #f5ead0; }
.hero--video .italic { color: var(--champagne); }
.hero--video .hero__lead { color: rgba(245, 234, 208, 0.86); }
.hero--video .hero__eyebrow {
  background: rgba(245, 234, 208, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(245, 234, 208, 0.18);
  color: #f5ead0;
}
.hero--video .hero__trust { color: rgba(245, 234, 208, 0.75); }
.hero--video .hero__trust-row .check {
  background: var(--champagne);
  color: var(--ink);
}
.hero--video .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.hero--video .btn--primary:hover {
  background: var(--champagne);
  color: var(--ink);
}
.hero--video .btn--ghost {
  color: #f5ead0;
  border-color: rgba(245, 234, 208, 0.28);
}
.hero--video .btn--ghost:hover {
  border-color: rgba(245, 234, 208, 0.6);
  background: rgba(245, 234, 208, 0.06);
}
.hero--video .hero__watermark { display: none; }

/* Video placeholder badge */
.video-badge {
  position: absolute;
  bottom: 22px; right: 22px;
  z-index: 3;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(245, 234, 208, 0.78);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 234, 208, 0.15);
  display: inline-flex; align-items: center; gap: 8px;
}
.video-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 8px var(--champagne);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: rgba(245, 234, 208, 0.6);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-cue__line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(245, 234, 208, 0.5));
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(to bottom, transparent, var(--champagne));
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateY(0); }
  100% { transform: translateY(56px); }
}

/* ===== SVG scene animations ===== */
@keyframes scene-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2.5px); }
}
@keyframes scene-hands-slide {
  0%, 100% { transform: translate(0, 0); }
  45%, 55% { transform: translate(180px, 6px); }
}
@keyframes scene-rock {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  45%, 55% { transform: translate(10px, 0) rotate(-1.4deg); }
}
@keyframes scene-mote {
  0%   { transform: translate(0, 80px); opacity: 0; }
  15%  { opacity: 0.8; }
  85%  { opacity: 0.5; }
  100% { transform: translate(20px, -260px); opacity: 0; }
}
@keyframes scene-light-shimmer {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}
.scene-patient    { animation: scene-breathe 4.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.scene-prac       { animation: scene-rock 8s ease-in-out infinite; transform-origin: bottom center; transform-box: fill-box; }
.scene-hands      { animation: scene-hands-slide 8s ease-in-out infinite; }
.scene-light      { animation: scene-light-shimmer 6s ease-in-out infinite; }
.scene-mote       { animation: scene-mote 7s linear infinite; transform-box: fill-box; transform-origin: center; }
.scene-mote:nth-of-type(2) { animation-delay: 1.3s; animation-duration: 8.2s; }
.scene-mote:nth-of-type(3) { animation-delay: 2.6s; animation-duration: 6.4s; }
.scene-mote:nth-of-type(4) { animation-delay: 3.9s; animation-duration: 7.6s; }
.scene-mote:nth-of-type(5) { animation-delay: 0.7s; animation-duration: 9.1s; }
.scene-mote:nth-of-type(6) { animation-delay: 5.2s; animation-duration: 7.0s; }
@media (prefers-reduced-motion: reduce) {
  .scene-patient, .scene-prac, .scene-hands, .scene-light, .scene-mote { animation: none; }
}

.hero__watermark {
  position: absolute;
  right: calc(var(--pad-x) * -0.5);
  top: -60px;
  width: clamp(380px, 48vw, 760px);
  height: clamp(380px, 48vw, 760px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
}
.hero__watermark img { width: 100%; height: 100%; object-fit: contain; }
.hero .container { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 40px;
  font: 500 12px/1 var(--sans);
  color: var(--ink);
  letter-spacing: 0.03em;
}
.hero__eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); flex-shrink: 0;
  animation: pulse 2.6s ease-in-out infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: end;
  }
}
.hero__title { margin: 0 0 36px; }
.hero__title .italic { display: block; }
.hero__lead {
  max-width: none;
  margin: 0 0 32px;
  color: var(--body);
  font-size: 17.5px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}
.hero__trust {
  display: flex; flex-direction: column; gap: 14px;
  font: 500 13px/1.5 var(--sans);
  color: var(--muted);
}
.hero__trust-row {
  display: flex; align-items: center; gap: 12px;
}
.hero__trust-row .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--taupe);
  color: var(--paper);
  display: inline-grid; place-items: center;
  font-size: 10px; font-weight: 600;
  flex-shrink: 0;
}

/* ============ PHOTO SLOTS ============ */
/* Refined airy duotone placeholders. */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 80% 60% at 30% 25%, rgba(207, 180, 145, 0.30), transparent 70%),
    radial-gradient(ellipse 70% 80% at 80% 90%, rgba(117, 96, 91, 0.22), transparent 65%),
    linear-gradient(165deg, #ebe2cf 0%, #d4c3a8 100%);
  box-shadow: var(--shadow-card);
}
.photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 24, 18, 0.05) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: 0.4;
  pointer-events: none;
}
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo--portrait {
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(207, 180, 145, 0.42), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(117, 96, 91, 0.30), transparent 60%),
    linear-gradient(180deg, #e6d8c0 0%, #c8b193 100%);
}
.photo--treatment {
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(232, 213, 184, 0.36), transparent 70%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(139, 156, 138, 0.20), transparent 65%),
    linear-gradient(160deg, #ece1cb 0%, #cdb89a 100%);
}
.photo--lifestyle {
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(213, 191, 159, 0.48), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 110%, rgba(85, 70, 65, 0.32), transparent 65%),
    linear-gradient(170deg, #e4d4ba 0%, #b9a18b 100%);
}
.photo-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 9px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.photo-label::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--taupe);
}

/* Hero photo */
.hero__photo {
  margin-top: clamp(60px, 9vw, 90px);
  height: clamp(360px, 42vw, 540px);
  border-radius: var(--r-xl);
}
.hero--video .hero__photo { display: none; }

/* Compact hero grid for video variant — just title + lead, no full bleed photo */
.hero--video .hero__grid {
  align-items: start;
}

/* Floating review card overlay */
.hero__overlay-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  z-index: 2;
}
.hero__overlay-card .stars { color: var(--champagne); font-size: 14px; letter-spacing: 2px; }
.hero__overlay-card .num {
  font-family: var(--serif); font-size: 36px; color: var(--ink);
  line-height: 1; letter-spacing: -0.02em; font-weight: 500;
}
.hero__overlay-card .lbl {
  font: 500 11.5px/1.4 var(--sans);
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: 36px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.trust-strip__label {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-strip__items {
  display: flex; flex-wrap: wrap; gap: 44px; align-items: center;
  justify-content: center;
}
.trust-strip__item {
  font: 400 18px/1 var(--serif);
  color: var(--ink);
  letter-spacing: 0.01em;
  font-style: italic;
  opacity: 0.75;
}

/* ============ AUDIENCE CARDS ============ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  padding: 36px 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .4s ease;
  cursor: default;
  border: 1px solid transparent;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hairline-soft);
}
.audience-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #e6e6e6;
  display: grid; place-items: center;
  font: 500 16px/1 var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: italic;
}
.audience-card__icon svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; }
.audience-card__title {
  font: 500 22px/1.25 var(--serif);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.audience-card__body {
  font: 400 14.5px/1.65 var(--sans);
  color: var(--body);
  margin: 0;
}

/* ============ APPROACH (Story) ============ */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 880px) {
  .approach__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
}
.approach__photo { height: clamp(360px, 46vw, 540px); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.stat__value {
  font: 400 52px/1 var(--serif);
  color: var(--ink);
  letter-spacing: -0.025em;
}
.stat__label {
  font: 500 12px/1.4 var(--sans);
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Credential list (approach) */
.creds {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.cred {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.cred__term {
  font: 400 22px/1.25 var(--serif);
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cred__desc {
  flex: none;
  font: 500 11px/1 var(--sans);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ CONDITIONS TREATED ============ */
.conditions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.conditions__item {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color .25s ease, padding .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.conditions__item:hover {
  color: var(--taupe);
  padding-left: 16px;
}
.conditions__item .arrow {
  display: none;
  color: var(--taupe);
  font-size: 20px;
  opacity: 0;
  transition: opacity .25s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-8px);
}
.conditions__item:hover .arrow { opacity: 1; transform: translateX(0); }
@media (min-width: 720px) {
  .conditions {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 56px;
  }
}

.svc-group{margin-top:56px}
.svc-group:first-of-type{margin-top:32px}
.svc-group__head{margin-bottom:20px}
.svc-group__head h3{font:600 13px/1 var(--sans);letter-spacing:.14em;text-transform:uppercase;color:var(--taupe);margin:0}
.svc-group__body{display:grid;grid-template-columns:1fr;gap:24px}
@media (min-width:900px){.svc-group__body{grid-template-columns:2fr 1fr;align-items:stretch}}
.svc-group__cards{display:grid;grid-template-columns:1fr;gap:16px}
@media (min-width:640px){.svc-group__cards{grid-template-columns:repeat(2,1fr)}}
.svc-group__photo{margin:0;border-radius:var(--r-lg);overflow:hidden}
.svc-group__photo img{width:100%;height:100%;object-fit:cover;display:block}
/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
  min-height: 240px;
  position: relative;
  border: 1px solid transparent;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--hairline-soft);
}
.service__num {
  font: 500 11px/1 var(--mono);
  color: var(--taupe);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.service__name {
  font: 500 26px/1.2 var(--serif);
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.service__desc {
  font: 400 14.5px/1.65 var(--sans);
  color: var(--body);
  margin: 0;
}

.pillars { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(40px, 5vw, 64px); }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--paper); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease; min-height: 200px; position: relative; border: 1px solid transparent; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hairline-soft); }
.pillar__num { font: 500 16px/1 var(--mono); color: var(--taupe); letter-spacing: 0.16em; margin-bottom: 6px; }
.pillar__name { font: 500 26px/1.2 var(--serif); color: var(--ink); margin: 0 0 4px; letter-spacing: -0.01em; }
.pillar__desc { font: 400 14.5px/1.65 var(--sans); color: var(--body); margin: 0; }

/* Treatments photo gallery */
.services-gallery { margin-top: clamp(48px, 6vw, 84px); }
.services-gallery__kicker {
  display: block;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.gallery-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
/* First-consultation detail block */
.consult-detail { margin-top: clamp(56px, 7vw, 100px); }
.consult-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 900px) {
  .consult-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}
.consult-layout__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
}
@media (min-width: 900px) {
  .consult-layout__photo { position: sticky; top: 96px; }
}
.exam-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
#werkwijze-detail .consult-layout { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  #werkwijze-detail .consult-layout { grid-template-columns: 0.8fr 1fr; }
}
#werkwijze-detail .consult-layout__photo { aspect-ratio: 3 / 4; max-width: 380px; }
.tailored-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: clamp(40px, 6vw, 56px);
  position: relative;
}
@media (min-width: 760px) {
  .tailored-timeline { grid-template-columns: repeat(3, 1fr); }
  .tailored-timeline::before { content: ""; position: absolute; top: 27px; left: calc(100% / 6); right: calc(100% / 6); height: 1px; background: var(--hairline); }
}
.tailored-timeline__item { position: relative; text-align: center; padding: 0 16px; }
.tailored-timeline__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px;
  margin: 0 auto 24px; position: relative; z-index: 2;
}
.tailored-timeline__item h3 { font-size: 19px; margin: 0 0 10px; }
.tailored-timeline__item p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.d-list { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--hairline); }
.d-item { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--hairline); }
.d-num { font-family: var(--serif); font-size: 32px; color: var(--taupe); }
.d-subgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:18px}
@media (min-width:720px){.d-subgrid{grid-template-columns:repeat(4,1fr)}}
.d-chip{background:#F0EBEB;border-radius:var(--r-md, 12px);padding:14px 16px}
.d-chip h4{font:600 13.5px/1.3 var(--sans);color:var(--ink);margin:0 0 6px}
.d-chip p, .d-item .d-chip p{font:400 9px/1.3 var(--sans);color:var(--body);margin:0;max-width:none}
.d-item h3 { font-size: 20px; margin: 0 0 10px; }
.d-subgrid--photo{grid-template-columns:repeat(3,minmax(0,120px));gap:14px}
.d-subgrid--photo-4{grid-template-columns:repeat(4,minmax(0,120px))}
.d-subgrid--photo-5{grid-template-columns:repeat(5,minmax(0,130px));gap:16px}
.d-subgrid--photo-6{grid-template-columns:repeat(5,minmax(0,130px));gap:16px}
.d-subgrid--photo-3{grid-template-columns:repeat(3,minmax(0,220px));gap:16px}
.d-tile{margin:0;display:flex;flex-direction:column;gap:6px}
.d-tile__img{display:block;width:100%;aspect-ratio:1/1;border-radius:var(--r-md,12px);overflow:hidden}
.d-tile__img--landscape{aspect-ratio:4/3}
.d-tile figcaption{font:600 11px/1.3 var(--sans);color:var(--ink);text-align:center}
.d-item p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0; max-width: 680px; }
.d-extra { margin-top: 28px; padding: 32px 36px; border-radius: var(--r-lg); background: var(--paper-3); border-top: none; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: nowrap; }
.d-extra__text { flex: 1 1 auto; min-width: 0; }
.sched-wrap { flex: 0 0 auto; }
.d-extra h3 { font-family: var(--sans); font-size: 20px; font-weight: 600; letter-spacing: 0.01em; margin: 0 0 10px; color: var(--taupe); }
.d-extra p { font-family: var(--sans); font-size: 16.5px; line-height: 1.7; color: var(--body); margin: 0; max-width: 620px; }
.d-extra__text { flex: 1 1 auto; }
.sched-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.sched-card { position: relative; background: var(--paper); border-radius: 16px; box-shadow: 0 12px 32px rgba(0,0,0,.1); width: 200px; padding: 22px 16px; text-align: center; overflow: visible; }
.sched-eyebrow { display: block; font: 600 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.sched-day { font-family: var(--serif); font-weight: 600; font-size: 34px; line-height: 1; color: var(--ink); }
.sched-divider { width: 32px; height: 2px; background: var(--taupe-soft); margin: 10px auto; }
.sched-time { display: block; font: 600 13px/1 var(--sans); letter-spacing: 0.03em; color: var(--taupe); }
.sched-stamp { position: absolute; top: -40px; right: -18px; width: 76px; height: 76px; border-radius: 50%; background: var(--taupe); color: var(--paper); display: flex; align-items: center; justify-content: center; text-align: center; transform: rotate(10deg); box-shadow: var(--shadow-sm); }
.sched-stamp span { font: 700 9.5px/1.3 var(--sans); letter-spacing: 0.03em; text-transform: uppercase; }
.sched-wrap a { font: 600 14px/1 var(--sans); color: var(--paper); background: var(--taupe); padding: 12px 24px; border-radius: var(--r-pill); text-decoration: none; }
.sched-wrap a:hover { background: var(--taupe-soft); }
@media (max-width: 900px) {
  .sched-wrap { transform: scale(.82); transform-origin: right center; }
}
@media (max-width: 640px) {
  .sched-wrap { transform: none; align-self: center; }
  .d-extra { gap: 20px; padding: 24px 20px; flex-direction: column; align-items: stretch; }

  .d-item { grid-template-columns: 1fr; gap: 8px; }
  .d-num { font-size: 24px; }
}
.exam-item {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--hairline);
}
.exam-item__num {
  flex: none;
  font: 400 15px/1 var(--serif);
  color: var(--taupe);
  letter-spacing: 0.04em;
  padding-top: 5px;
}
.exam-item__title {
  font: 500 21px/1.25 var(--serif);
  color: var(--ink);
  margin: 0 0 7px;
  letter-spacing: -0.01em;
}
.exam-item__desc {
  font: 400 14.5px/1.65 var(--sans);
  color: var(--body);
  margin: 0;
}
.consult-detail__why {
  margin: clamp(40px, 4.5vw, 60px) auto 0;
  max-width: 660px;
  text-align: center;
  text-wrap: balance;
  font: 400 clamp(19px, 2vw, 23px)/1.45 var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .steps::before {
    content: '';
    position: absolute;
    top: 60px; left: 16%;
    right: 16%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--taupe-soft) 0 4px, transparent 4px 12px);
    opacity: 0.4;
  }
}
.step {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  font: 400 22px/1 var(--serif);
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 28px;
}
.step--paper-bg .step__num { background: var(--paper-3); }
.step__title {
  font: 500 26px/1.2 var(--serif);
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.step__body { font-size: 14.5px; line-height: 1.7; color: var(--body); margin: 0; }
.btn--sm {
  padding: 11px 20px;
  font-size: 13px;
}
.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  color: var(--ink-soft);
  font: 600 11.5px/1 var(--sans);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.hero__trust-pill:hover { background: var(--champagne); color: var(--ink); }
.step__cta { margin-top: 4px; }
.step__time {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
  font: 500 11px/1 var(--mono);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.a-wrap { position: relative; max-width: 1160px; margin: clamp(40px,6vw,56px) auto 0; padding: 0 8px; }
.a-line { position: absolute; top: 27px; left: 13%; right: 13%; height: 1px; background: var(--hairline); }
.a-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; }
@media (min-width: 760px) { .a-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.a-node { width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 19px; margin: 0 auto 26px; position: relative; z-index: 2; }
.a-item { text-align: center; padding: 0 8px; }
.a-item h3 { font: 500 20px/1.25 var(--serif); color: var(--ink); margin: 0 0 10px; }
.a-item p { font-size: 14.5px; line-height: 1.65; color: var(--body); margin: 0; }
.a-item__time { margin-top: 16px; font: 500 11px/1 var(--mono); color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ============ TEAM ============ */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) {
  .team { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
/* Single-practitioner feature layout */
.team--solo { grid-template-columns: 1fr; max-width: 980px; }
@media (min-width: 720px) {
  .team--solo { grid-template-columns: 1fr; }
}
.member--feature { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 720px) {
  .member--feature {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
  .member--feature:hover { transform: none; }
  .member--feature .member__photo { margin-bottom: 0; }
}
.member__photos { display: flex; flex-direction: column; gap: 20px; }
.member__photo--landscape.member__photo--landscape { aspect-ratio: 4 / 3; }
.member__body { max-width: 30rem; }
.member--feature .member__name { font-size: 34px; }
.member--feature .member__bio { font-size: 16px; }
.member {
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.member:hover { transform: translateY(-4px); }
.member__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  margin-bottom: 22px;
}
.member__name {
  font: 500 26px/1.2 var(--serif);
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.member__role {
  font: 500 11px/1.4 var(--mono);
  color: var(--taupe);
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.member__bio { font-size: 14.5px; color: var(--body); margin: 0; line-height: 1.7; }

/* ============ REVIEWS ============ */
.reviews-head { display: block; }
.reviews-head .h2 { max-width: none; }
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 720px) {
  .reviews-head {
    grid-template-columns: 1fr auto;
    gap: 48px;
  }
}
.reviews-score {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 28px;
  background: var(--paper);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.reviews-score__num {
  font: 400 40px/1 var(--serif);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.reviews-score__stars { color: var(--champagne); letter-spacing: 3px; font-size: 14px; }
.reviews-score__meta { font: 500 12px/1.4 var(--sans); color: var(--muted); }

.reviews-translate {
  display: inline-flex; align-items: center; gap: 8px;
  margin: -8px 0 28px; padding: 9px 18px;
  border: 1px solid var(--hairline-soft); border-radius: 999px;
  background: #fff; color: var(--ink);
  font: 500 12.5px/1 var(--sans); cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.reviews-translate:hover { background: var(--sand, #f4efe8); border-color: var(--taupe, #a08f88); }
.review__translate {
  margin-top: 14px; align-self: flex-start;
  padding: 7px 14px; border: 1px solid var(--hairline-soft); border-radius: 999px;
  background: transparent; color: var(--muted);
  font: 500 11.5px/1 var(--sans); cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.review__translate:hover { background: var(--sand, #f4efe8); border-color: var(--taupe, #a08f88); color: var(--ink); }
.reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.reviews .review { scroll-snap-align: start; }

.review {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review__stars { color: var(--champagne); letter-spacing: 2px; font-size: 13px; }
.review__quote {
  font: 500 18px/1.5 var(--serif);
  color: var(--ink);
  margin: 0;
  font-style: italic;
  flex: 1;
  letter-spacing: -0.01em;
}
.review__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
}
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--taupe-soft));
  display: grid; place-items: center;
  font: 500 15px/1 var(--serif);
  color: var(--ink);
  font-style: italic;
}
.review__author-name { font: 500 13.5px/1.2 var(--sans); color: var(--ink); margin: 0; }
.review__author-meta { font: 400 12px/1.2 var(--sans); color: var(--muted); margin-top: 3px; }
.review__source {
  margin-left: auto;
  font: 500 10px/1 var(--mono);
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .pricing { grid-template-columns: repeat(4, 1fr); }
}
.price-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__num { color: var(--paper); }
.price-card--featured .price-card__desc { color: rgba(245, 238, 226, 0.7); }
.price-card--featured .price-card__cta { color: var(--champagne); border-top-color: rgba(245, 238, 226, 0.15); }
.price-card__tag {
  font: 600 10px/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: -8px;
}
.price-card__name { font: 500 20px/1.2 var(--serif); color: var(--ink); margin: 0; letter-spacing: -0.005em; }
.price-card__num {
  font: 400 48px/1 var(--serif);
  color: var(--ink);
  letter-spacing: -0.025em;
}
.price-card__desc { font: 400 13.5px/1.65 var(--sans); color: var(--body); margin: 0; flex: 1; }
.price-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  border-top: 1px solid var(--hairline-soft);
  padding-top: 18px;
  transition: color .2s ease;
}
.price-card__cta:hover { color: var(--ink); }
.pricing-note {
  margin-top: 32px;
  font: 400 13.5px/1.5 var(--sans);
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ============ FAQ ============ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  transition: padding .3s ease;
}
.faq details[open] { padding-bottom: 24px; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font: 500 23px/1.35 var(--serif);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .25s ease;
}
.faq summary:hover { color: var(--taupe); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  position: relative;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .25s ease;
  background-image:
    linear-gradient(var(--taupe), var(--taupe)),
    linear-gradient(var(--taupe), var(--taupe));
  background-position: center, center;
  background-size: 12px 1.5px, 1.5px 12px;
  background-repeat: no-repeat;
}
.faq summary:hover::after { border-color: var(--taupe); }
.faq details[open] summary::after {
  transform: rotate(135deg);
  background-size: 12px 1.5px, 0 0;
}
.faq details > p {
  margin: 20px 0 4px;
  font: 400 16px/1.75 var(--sans);
  color: var(--body);
  max-width: 720px;
}

.faq__table{width:100%;border-collapse:collapse;margin:12px 0;font:400 14px/1.5 var(--sans);color:var(--body)}
.faq__table th{text-align:left;font:600 12px/1 var(--sans);letter-spacing:.04em;color:var(--muted);padding:0 12px 8px 0;border-bottom:1px solid var(--line)}
.faq__table td{padding:10px 12px 10px 0;border-bottom:1px solid var(--line)}
.faq__table tr:last-child td{border-bottom:none}
.visit {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.map {
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-card);
  min-height: 200px;
}
.map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.25) sepia(0.15) saturate(0.85) brightness(0.98);
  transition: filter .4s ease;
}
.map:hover iframe { filter: grayscale(0) sepia(0) saturate(1) brightness(1); }
.map__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  background: var(--ink); color: var(--paper);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  white-space: nowrap;
}
.map__pin::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}
.map__pin::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 6px solid transparent;
  border-top-color: var(--ink);
  border-bottom: 0;
}
.map__directions {
  position: absolute;
  right: 16px; bottom: 16px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.map__directions:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.visit__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .visit__info { grid-template-columns: 1fr 1.3fr; align-items: stretch; }
}
.visit__col {
  display: flex; flex-direction: column; gap: 18px;
}
.visit__col > * { flex: 1; }
.visit__col:nth-child(2) > .info-card--lg:nth-child(1) { flex: 0.7; }
.visit__col:nth-child(2) > .map { flex: 1.3; }
.info-card--lg { padding: 36px 38px; }
.info-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.info-card .kicker { display: inline-flex; margin-bottom: 14px; color: var(--muted); }
.info-card .kicker::before { background: var(--muted); }
.info-card__primary { font: 500 19px/1.4 var(--serif); color: var(--ink); white-space: pre-line; letter-spacing: -0.005em; margin: 8px 0 0; }
.info-card__secondary { font: 400 14px/1.6 var(--sans); color: var(--body); margin-top: 8px; }
.info-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font: 500 13.5px/1 var(--sans); color: var(--taupe);
}
.info-card__cta:hover { color: var(--ink); }
.info-card__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.info-card__btn { flex: none; padding: 12px 22px; font-size: 13px; }
.check-list { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font: 400 14px/1.5 var(--sans); color: var(--body); }
.check-list__icon {
  flex: none; color: var(--taupe);
  font-size: 13px; line-height: 1.5; text-align: center;
}
.hours { display: flex; flex-direction: column; gap: 4px; }
.hours__row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font: 400 14.5px/1 var(--sans); color: var(--body);
}
.hours__row + .hours__row { border-top: 1px solid var(--hairline-soft); }
.hours__row span:last-child {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ============ DIRECTIONS ============ */
.directions { margin-top: 56px; scroll-margin-top: 100px; }
.directions__head { margin-bottom: 28px; }
.directions__title { font: 500 26px/1.3 var(--serif); color: var(--ink); margin-top: 10px; }
.directions__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(85px, 98px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.directions__step { position: relative; scroll-snap-align: start; }
.directions__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
}
.directions__num {
  display: block;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 9px;
}
.directions__caption {
  font: 400 11px/1.4 var(--sans);
  color: var(--body);
  margin-top: 6px;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--bg);
  color: var(--body);
  position: relative;
  overflow: hidden;
}
.cta-band__mark {
  position: absolute;
  left: -100px; bottom: -160px;
  width: 600px; height: 600px;
  opacity: 0.06;
  pointer-events: none;
}
.cta-band__arc {
  position: absolute;
  width: 760px; height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(117, 96, 91, 0.18);
  right: -220px; top: -180px;
  pointer-events: none;
}
.cta-band__arc--2 {
  width: 560px; height: 560px;
  right: -120px; top: -80px;
  border-color: rgba(117, 96, 91, 0.1);
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 880px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 24px; }
}
.cta-band .h2 { color: var(--ink); }
.cta-band .italic { color: var(--taupe); }
.cta-band__lead {
  color: var(--body);
  margin: 0 0 32px;
  max-width: none;
  font-size: 17px;
  line-height: 1.7;
}
.cta-band__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: var(--paper-3);
  padding: 88px 0 36px;
  border-top: 1px solid var(--hairline-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 64px;
}
@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
.footer__brand p {
  font: 400 15px/1.7 var(--sans);
  color: var(--body);
  margin: 18px 0 0;
  max-width: 340px;
  font-style: italic;
}
.footer__col h4 {
  font: 600 11px/1 var(--sans);
  color: var(--taupe);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__col a, .footer__col p {
  display: block;
  font: 400 14.5px/2 var(--sans);
  color: var(--body);
  text-decoration: none;
  margin: 0;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--taupe); }
.footer__col .accent { color: var(--taupe); }
.footer__legal {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-soft);
  font: 400 12px/1.5 var(--sans);
  color: var(--muted);
}
.footer__legal a { color: var(--muted); text-decoration: none; margin-left: 22px; }
.footer__legal a:hover { color: var(--ink); }
.footer__practice { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.08); font-size: 13px; color: var(--muted); text-align: center; }

/* ============ MISC ============ */
::selection { background: var(--taupe); color: var(--paper); }

/* Subtle ornamental flourish — used between major sections */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  color: var(--whisper);
}
.flourish::before, .flourish::after {
  content: '';
  height: 1px; width: 80px;
  background: linear-gradient(90deg, transparent, var(--hairline));
}
.flourish::after {
  background: linear-gradient(90deg, var(--hairline), transparent);
}
.flourish__mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--taupe);
  opacity: 0.4;
}
