/* ─────────────────────────────────────────────
   Body Contour Clinic Almere · behandelpagina's
   Gedeelde stijl voor /behandelingen/ en de acht
   behandelpagina's. Huisstijl overgenomen uit index.html.
   ───────────────────────────────────────────── */

:root {
  --cream: #FAF7F2;
  --cream-deep: #F4EFE6;
  --rose: #C9956A;
  --rose-deep: #B07F58;
  --rose-soft: #E4C9AE;
  --mauve: #2D1B2E;
  --mauve-mid: #4A3149;
  --choco: #4A332C;
  --choco-deep: #3A2822;
  --blush: #F0D5C8;
  --blush-deep: #E8C4B3;
  --line: rgba(45, 27, 46, 0.14);
  --line-soft: rgba(45, 27, 46, 0.08);
  --muted: rgba(45, 27, 46, 0.62);
  --shadow-sm: 0 1px 2px rgba(45, 27, 46, 0.04);
  --shadow-md: 0 12px 32px -16px rgba(45, 27, 46, 0.18);
  --shadow-lg: 0 24px 60px -24px rgba(45, 27, 46, 0.22);

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--mauve);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--rose); color: var(--cream); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--mauve);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--mauve);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--choco);
  color: var(--cream);
  border-color: var(--choco);
}

/* ── Navbar ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--mauve);
  display: inline-flex;
  flex-direction: column;
}
.nav-mark small {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 2px;
}
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mauve);
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--rose-deep); }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--mauve);
}

@media (min-width: 880px) {
  .nav-links { display: inline-flex; }
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 16px 24px 24px;
  background: var(--cream);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--mauve);
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-child { border-bottom: 0; }

/* ── Hero behandelpagina ── */
.treat-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.treat-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blush) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}
.treat-hero .container { position: relative; z-index: 1; }
.treat-hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  margin: 18px 0 18px;
  max-width: 18em;
}
.treat-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.treat-intro {
  max-width: 46rem;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--mauve);
  opacity: 0.78;
  margin: 0;
}

/* ── Inhoud ── */
.treat-section { padding: 40px 0 88px; }
.treat-content { max-width: 760px; }
.treat-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--mauve);
  margin: 56px 0 16px;
}
.treat-content h2:first-child { margin-top: 16px; }
.treat-content p {
  margin: 0 0 18px;
  color: var(--mauve);
  opacity: 0.86;
  line-height: 1.75;
  font-size: 16px;
}

/* Vinkjes-lijst */
.check-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--mauve);
  opacity: 0.88;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9956A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Uitgelicht: kaart met rose rand */
.highlight-card {
  background: var(--cream);
  border: 1px solid var(--rose-soft);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--mauve);
}
.highlight-card p:last-child { margin-bottom: 0; }
.highlight-card .check-list { margin-bottom: 16px; }
@media (max-width: 560px) {
  .highlight-card { padding: 24px 22px; }
}

/* Uitgelicht: choco-blok */
.highlight-choco {
  background: linear-gradient(175deg, var(--choco) 0%, var(--choco-deep) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  margin: 44px 0;
}
.highlight-choco .eyebrow { color: var(--rose-soft); }
.highlight-choco .eyebrow::before { background: var(--rose); }
.highlight-choco h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  margin: 22px 0 10px;
  color: var(--cream);
}
.highlight-choco h3:first-child,
.highlight-choco .eyebrow + h3 { margin-top: 16px; }
.highlight-choco p {
  margin: 0 0 16px;
  color: var(--cream);
  opacity: 0.82;
  line-height: 1.7;
  font-size: 15.5px;
}
.highlight-choco-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 26px;
}
.highlight-choco-actions .btn-link {
  font-size: 14px;
  color: var(--rose-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.highlight-choco-actions .btn-link:hover { color: var(--cream); }
@media (max-width: 560px) {
  .highlight-choco { padding: 30px 24px; }
}

/* Uitgelichte quote */
.treat-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--mauve);
  border-left: 3px solid var(--rose);
  padding: 10px 0 10px 28px;
  margin: 44px 0;
}
.treat-quote strong {
  font-weight: 300;
  color: var(--rose-deep);
}

/* Medische disclaimer, omkaderd en duidelijk zichtbaar */
.medical-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--rose);
  background: rgba(201, 149, 106, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 36px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mauve);
}
.medical-note svg {
  width: 22px;
  height: 22px;
  color: var(--rose-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.medical-note p { margin: 0; opacity: 0.92; font-size: 15px; }
.medical-note strong { font-weight: 600; }

/* Foto placeholder */
.photo-placeholder {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--blush) 0%, var(--rose-soft) 60%, var(--cream-deep) 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--mauve);
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 30% 15%, rgba(255,255,255,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.photo-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.5;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.photo-placeholder em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  opacity: 0.65;
  position: relative;
  z-index: 1;
}
.treat-photo {
  aspect-ratio: 16 / 7;
  margin: 44px 0;
}
@media (max-width: 560px) {
  .treat-photo { aspect-ratio: 4 / 3; }
}

/* Disclaimer onderaan: kleiner en gedempt, maar leesbaar */
.treat-disclaimer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
}

/* ── CTA-blok "Plan je afspraak" ── */
.treat-cta {
  background: linear-gradient(175deg, var(--choco) 0%, var(--choco-deep) 100%);
  color: var(--cream);
  padding: 84px 0;
  text-align: center;
}
.treat-cta .eyebrow {
  color: var(--rose-soft);
  justify-content: center;
}
.treat-cta .eyebrow::before { background: var(--rose); }
.treat-cta h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--cream);
  margin: 16px 0 14px;
}
.treat-cta h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.treat-cta p {
  color: var(--cream);
  opacity: 0.78;
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 30px;
}
.treat-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.treat-cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.35);
}
.treat-cta .btn-ghost:hover {
  background: var(--cream);
  color: var(--choco);
  border-color: var(--cream);
}

/* ── Verwante behandelingen / overzichtskaarten ── */
.related { padding: 80px 0 88px; }
.related-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.related-head .eyebrow { justify-content: center; }
.related-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 16px 0 0;
}
.related-head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.related-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 600px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 680px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.related-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.related-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--mauve);
}
.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.related-card .related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rose-deep);
  margin-top: 8px;
  transition: gap 0.2s ease;
}
.related-card:hover .related-link { gap: 14px; }

/* ── Aanbevolen door professionals (zoals op de homepage) ── */
.pros {
  max-width: 880px;
  margin: 64px auto 0;
  text-align: center;
}
.pros h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--mauve);
  margin: 0 0 10px;
}
.pros h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rose-deep);
}
.pros-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.pros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
@media (min-width: 720px) {
  .pros-grid { grid-template-columns: 1fr 1fr; }
}
.pros-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pros-flag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--blush);
  border-radius: 999px;
  padding: 4px 11px;
}
.pros-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  color: var(--mauve);
  margin: 0;
}
.pros-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--mauve);
}
.pros-meta span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Overzichtspagina ── */
.overview-section { padding: 48px 0 32px; }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 680px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .overview-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── Compacte footer ── */
.footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--mauve);
}
.footer-mark + small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 4px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
}
.footer-links a {
  color: var(--mauve);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-links a:hover { opacity: 1; color: var(--rose-deep); }
.footer-base {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
@media (min-width: 720px) {
  .footer-base { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-base p { margin: 0; }
.footer-base a {
  color: var(--rose-deep);
  transition: color 0.2s ease;
}
.footer-base a:hover { color: var(--rose); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
