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

html, body {
  height: 100%;
}

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

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

/* Tokens */
:root {
  --bg-deep:         #1A1F26;
  --bg-soft:         #20262E;
  --text:            #EAE7E1;
  --text-muted:      #ADAAA3;
  --text-faint:      rgba(234,231,225,0.40);
  --accent:          #C9A878;
  --btn-bg:          #C9A878;
  --btn-text:        #1A1F26;
  --hairline:        rgba(234,231,225,0.12);
  --hairline-strong: rgba(234,231,225,0.22);
  --photo-filter:    brightness(1.02) contrast(1.10) saturate(1.12) sepia(0.05);

  --bg-light:        #F5F4F1;
  --bg-warm:         #E9E4DA;
  --bg-footer:       #090D12;
  --bg-darker:       #0D1117;
  --text-dark:       #2E2A25;
  --text-medium:     #4A4A4A;
  --text-subdued:    #5A5550;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-brand:   'Tenor Sans', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
}

/* Base */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero — mobile first ──────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: var(--photo-filter);
  z-index: 1;
}

/* Mobile: darker overlay so text is readable against the photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,31,38,0.70) 0%,
      rgba(26,31,38,0.65) 35%,
      rgba(26,31,38,0.72) 72%,
      rgba(26,31,38,0.94) 100%);
  pointer-events: none;
  z-index: 2;
}

.topbar {
  position: relative;
  z-index: 4;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-brand);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-right a { color: var(--text); transition: color 200ms ease; }

.nav-link-home:hover,
.nav-link-over:hover,
.nav-link-contact:hover { color: var(--text-muted); }

/* Nav links hidden on mobile, only Kennismaken button shown */
.nav-link-home,
.nav-link-aanbod,
.nav-link-over,
.nav-link-contact { display: none; }

.nav-cta {
  border: 1px solid var(--accent);
  padding: 8px 14px;
  letter-spacing: 0.16em;
  color: var(--text) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 200ms ease, color 200ms ease;
}

.nav-cta:hover {
  background-color: var(--accent);
  color: var(--btn-text) !important;
}

/* Aanbod dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  color: var(--text);
  cursor: pointer;
  transition: color 200ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--text-muted);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 250px;
  background: var(--bg-darker);
  border: 1px solid var(--hairline);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  z-index: 20;
}

/* transparent bridge so hover survives the gap to the menu */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 22px;
  color: var(--text-muted) !important;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease;
}

.nav-dropdown-menu a:hover {
  color: var(--accent) !important;
  background-color: rgba(234, 231, 225, 0.04);
}

/* Content pushed to bottom third of viewport on mobile */
.hero-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 0 24px 72px;
}

.eyebrow {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 12px;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  text-shadow: 0 2px 30px rgba(26,31,38,0.6);
}

.display .line2 {
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 16px 0 0;
  opacity: 0.92;
  text-shadow: 0 1px 14px rgba(26,31,38,0.7);
}

.cta-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: opacity 200ms ease;
}

.btn:hover { opacity: 0.88; }

.btn .arrow {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.link-secondary {
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 200ms ease;
}

.link-secondary:hover { color: var(--accent); }

/* ─── Hero — entrance animation (editorial sequence) ───────────────────── */

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.eyebrow {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 150ms both;
}

.display .line1 {
  display: block;
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 270ms both;
}

.display .line2 {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 390ms both;
}

.sub {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 510ms both;
}

.cta-row {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 630ms both;
}

/* ─── Scroll-reveal — sections below the fold ──────────────────────────── */

.js .reveal-group .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.js .reveal-group.is-visible .reveal {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--reveal-i, 0) * 120ms);
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow,
  .display .line1,
  .display .line2,
  .sub,
  .cta-row,
  .js .reveal-group .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Aanbod — sectie ────────────────────────────────────────────────────── */

.aanbod {
  position: relative;
  width: 100%;
  background: var(--bg-deep);
  padding: 0 0 0;
  overflow: hidden;
}

.aanbod-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* intro */

.aanbod-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 70px;
}

.aanbod-eyebrow {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.aanbod-titel {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0;
}

.aanbod-titel em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.aanbod-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}

.aanbod-meta {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-brand);
  flex-wrap: wrap;
}

.aanbod-meta span b {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.24em;
  margin-right: 8px;
}

/* basis (01 — Vermogensplan) */

.aanbod-basis {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-deep);
}

.aanbod-basis-text {
  position: relative;
  z-index: 3;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.aanbod-basis-tag {
  display: block;
  margin-bottom: 12px;
}

.aanbod-basis-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.aanbod-basis-pill {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
}

.aanbod-basis-titel {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.014em;
  margin: 0 0 18px;
  color: var(--text);
}

.aanbod-basis-prijs {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 30px;
  font-family: var(--font-brand);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aanbod-basis-prijs .prijs-bedrag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.aanbod-basis-prijs .prijs-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-3px);
  flex-shrink: 0;
}

.aanbod-basis-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.92;
  margin: 0 0 38px;
  max-width: 520px;
}

.aanbod-basis-lijst {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 14px;
}

.aanbod-basis-lijst li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  opacity: 0.92;
}

.aanbod-basis-lijst li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
}

.aanbod-basis-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.aanbod-basis-foto-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 380px;
}

.aanbod-basis-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 50%;
  filter: var(--photo-filter);
}

.aanbod-basis-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg,
      var(--bg-deep) 0%,
      rgba(26,31,38,0.55) 14%,
      rgba(26,31,38,0.12) 32%,
      rgba(26,31,38,0) 62%),
    linear-gradient(180deg,
      rgba(26,31,38,0.40) 0%,
      rgba(26,31,38,0) 24%,
      rgba(26,31,38,0) 78%,
      rgba(26,31,38,0.55) 100%);
  pointer-events: none;
}

.aanbod-basis-caption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 4;
  font-family: var(--font-brand);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.72;
  display: flex;
  align-items: center;
  gap: 12px;
}

.aanbod-basis-caption::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}


/* bridge */

.aanbod-bridge {
  padding: 70px 32px 40px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.aanbod-bridge-rule {
  height: 1px;
  background: var(--hairline);
}

.aanbod-bridge-label {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.aanbod-bridge-label em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  margin: 0 6px;
  vertical-align: -1px;
}

/* extras (02 + 03) */

.aanbod-extras {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
}

.aanbod-extras-card {
  position: relative;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

.aanbod-extras-foto-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}

.aanbod-extras-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

.aanbod-extras-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,31,38,0.25) 0%,
    rgba(26,31,38,0.05) 30%,
    rgba(26,31,38,0.55) 72%,
    rgba(26,31,38,0.92) 100%);
  pointer-events: none;
}

.aanbod-extras-num {
  position: absolute;
  top: 32px;
  left: 38px;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.aanbod-extras-foto-titel {
  position: absolute;
  bottom: 36px;
  left: 38px;
  right: 38px;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  text-shadow: 0 2px 28px rgba(26,31,38,0.65);
}

.aanbod-extras-foto-titel em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
}

.aanbod-extras-body {
  padding: 40px 38px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.aanbod-extras-prijs {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aanbod-extras-prijs .prijs-bedrag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.aanbod-extras-prijs .prijs-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-2px);
  flex-shrink: 0;
}

.aanbod-extras-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.88;
  margin: 0;
  max-width: 400px;
  text-wrap: pretty;
}

.aanbod-extras-lijst {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.aanbod-extras-lijst li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.9;
  padding-left: 22px;
  position: relative;
}

.aanbod-extras-lijst li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
}

.aanbod-extras-cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* note (Wat ik ook doe) */

.aanbod-note {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.aanbod-note-label {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 8px;
  border-top: 1px solid var(--hairline);
  width: 200px;
}

.aanbod-note-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.88;
  margin: 0;
  max-width: 760px;
}

.aanbod-note-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ─── Over Eloy — mobile first ─────────────────────────────────────────── */

.over {
  background: var(--bg-light);
}

.over-grid {
  display: flex;
  flex-direction: column;
}

.over-foto-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.over-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: var(--photo-filter);
  display: block;
}

.over-tekst {
  padding: 72px 24px 72px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.over-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  font-family: var(--font-brand);
  margin-bottom: -4px;
}

.over-naam {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--bg-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.over-alinea {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.over-cv {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-subdued);
  font-family: var(--font-brand);
  text-transform: uppercase;
  opacity: 0.75;
}

.over-meer {
  display: inline-block;
  width: fit-content;
  background: var(--bg-deep);
  color: var(--bg-warm);
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: opacity 200ms ease;
}

.over-meer:hover { opacity: 0.45; }

/* ─── Herken jij dit? — mobile first ───────────────────────────────────── */

.herken {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.herken-inner {
  max-width: 760px;
  margin: 0 auto;
}

.herken-opening {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  color: var(--bg-deep);
  line-height: 1.2;
  margin-bottom: 40px;
}

.herken-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.herken-tekst {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.herken-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background: var(--bg-deep);
  color: var(--bg-warm);
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: opacity 200ms ease;
}

.herken-cta:hover { opacity: 0.45; }

/* ─── Werkwijze — mobile first ─────────────────────────────────────────── */

/* ─── Uit de praktijk — mobile first ───────────────────────────────────── */

.praktijk {
  background: var(--bg-light);
  padding: 100px 0 96px;
}

.praktijk-slider-outer {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.praktijk-slider-wrap {
  flex: 1;
  overflow: hidden;
}

.praktijk-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.praktijk-slider::-webkit-scrollbar {
  display: none;
}

.praktijk-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 52px 48px;
}

.praktijk-label {
  display: block;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 16px;
}

.praktijk-kop {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-style: italic;
  font-weight: 500;
  color: var(--bg-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.praktijk-tekst {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-medium);
}

.praktijk-arrow {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--bg-deep);
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 400;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.praktijk-arrow:hover {
  opacity: 0.45;
}

.praktijk-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 24px 0 0;
}

.praktijk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 31, 38, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.praktijk-dot--active {
  background: var(--accent);
}

/* ─── Hero — desktop ───────────────────────────────────────────────────── */

@media (min-width: 900px) {

  .hero-photo {
    position: absolute;
    inset: auto;
    top: 0;
    right: 0;
    left: auto;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }

  /* Desktop: lighter vignette, no horizontal gradient */
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(26,31,38,0.50) 0%,
        rgba(26,31,38,0.20) 18%,
        rgba(26,31,38,0.20) 80%,
        rgba(26,31,38,0.60) 100%);
  }

  .topbar {
    padding: 34px 64px;
  }

  .wordmark {
    font-size: 22px;
  }

  .nav-right {
    gap: 36px;
    font-size: 12px;
  }

  .nav-link-home,
  .nav-link-aanbod,
  .nav-link-over,
  .nav-link-contact { display: inline; }

  .nav-cta {
    padding: 10px 18px;
  }

  /* Content: absolutely positioned left, vertically centered */
  .hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 620px;
    margin-top: 0;
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .display {
    font-size: 80px;
    white-space: nowrap;
  }

  .sub {
    font-size: 17px;
    margin: 20px 0 0;
    max-width: 460px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
  }

  .btn {
    padding: 13px 28px;
    font-size: 13px;
    gap: 14px;
  }

  .herken-cta,
  .over-meer {
    padding: 13px 28px;
    font-size: 13px;
  }

  .btn .arrow { font-size: 18px; }
}

/* ─── CTA-slot — mobile first ──────────────────────────────────────────── */

.cta-slot {
  background: var(--bg-darker);
  position: relative;
}

.cta-slot-inner {
  padding: 72px 24px 64px;
}

.cta-slot-tekst {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-slot-foto-wrap {
  margin-top: 48px;
}

.cta-slot-foto {
  width: 100%;
  height: auto;
  display: block;
  filter: var(--photo-filter);
}

.cta-slot-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cta-slot-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 440px;
}

.cta-slot .btn {
  margin-top: 28px;
}

.cta-slot-mail {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-slot-mail a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 200ms ease;
}

.cta-slot-mail a:hover { opacity: 0.75; }

/* ─── Footer — mobile first ─────────────────────────────────────────────── */

.footer {
  background: var(--bg-footer);
  padding: 64px 24px 32px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-wordmark {
  font-family: var(--font-brand);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-col-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-brand);
  margin-bottom: 14px;
  opacity: 0.65;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-kvk {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(173, 170, 163, 0.12);
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ─── Aanbod — desktop ─────────────────────────────────────────────────── */

@media (min-width: 900px) {

  .aanbod {
    padding: 0;
  }

  .aanbod-container {
    padding: 0 80px;
  }

  .aanbod-intro-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 110px;
  }

  .aanbod-sub {
    font-size: 22px;
  }

  .aanbod-basis {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    align-items: center;
  }

  .aanbod-basis-text {
    padding: 80px 40px 80px 120px;
    max-width: 680px;
  }

  .aanbod-basis-titel {
    font-size: 44px;
  }

  .aanbod-basis-lijst {
    grid-template-columns: 1fr;
  }

  .aanbod-basis-foto-wrap {
    width: 65%;
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: auto;
    margin: 60px 0 60px 56px;
    justify-self: start;
  }

  .aanbod-bridge {
    padding: 90px 80px 50px;
  }

  .aanbod-extras {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px;
  }

  .aanbod-extras-foto-titel {
    font-size: 54px;
  }

  .aanbod-note {
    grid-template-columns: 220px 1fr;
    gap: 60px;
    padding: 120px 80px 0;
  }

  .aanbod-ook-header {
    padding: 0 80px 0;
  }
}

/* ─── Aanbod ook ─────────────────────────────────────────────────────────── */

.aanbod-ook {
  padding-top: 56px;
}

.aanbod-ook .aanbod-extras {
  max-width: none;
  padding: 0;
  align-items: stretch;
}

.aanbod-ook .aanbod-extras .aanbod-ook-card {
  height: 100%;
}

.aanbod-ook-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.aanbod-ook-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

.aanbod-ook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,31,38,0.05) 0%,
    rgba(26,31,38,0.20) 30%,
    rgba(26,31,38,0.82) 55%,
    rgba(26,31,38,0.97) 100%);
  pointer-events: none;
}

.aanbod-ook-content {
  position: relative;
  z-index: 3;
  padding: 40px 38px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.aanbod-ook-card-titel {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0;
  text-shadow: 0 2px 20px rgba(26,31,38,0.5);
}

.aanbod-ook-header {
  padding: 0 32px 0;
}

.aanbod-ook-titel {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 16px;
}

@media (min-width: 900px) {
  .aanbod-ook {
    padding-top: 64px;
  }

  .aanbod-ook-content {
    min-height: 440px;
  }
}

/* ─── CTA-slot — desktop ────────────────────────────────────────────────── */

@media (min-width: 900px) {
  .cta-slot-inner {
    padding: 140px 0 140px 120px;
    max-width: 55%;
  }

  .cta-slot-tekst {
    gap: 14px;
  }

  .cta-slot-foto-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    margin-top: 0;
  }

  .cta-slot-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* ─── Footer — desktop ──────────────────────────────────────────────────── */

@media (min-width: 900px) {
  .footer {
    padding: 80px 80px 40px;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }

  .footer-col:first-child {
    flex: 1.5;
  }

  .footer-col {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ─── Over Eloy — desktop ───────────────────────────────────────────────── */

@media (min-width: 900px) {
  .over-grid {
    flex-direction: row;
    min-height: 640px;
  }

  .over-tekst {
    flex: 0 0 50%;
    padding: 60px 140px 60px 40px;
    justify-content: center;
    gap: 32px;
  }

  .over-eyebrow {
    margin-bottom: -20px;
  }

  .over-foto-wrap {
    flex: 0 0 50%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 60px 56px 60px 0;
    overflow: hidden;
  }

  .over-foto {
    position: static;
    width: 65%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 35%;
  }
}

/* ─── Uit de praktijk — mobile: pijltjes onder slider ───────────────────── */

@media (max-width: 899px) {
  .praktijk-slider-outer {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
  }
  .praktijk-slider-wrap {
    flex: 0 0 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .praktijk-arrow {
    order: 2;
    padding: 12px 8px;
  }
  .praktijk-slide {
    padding: 40px 32px;
  }
}

/* ─── Uit de praktijk — desktop ─────────────────────────────────────────── */

@media (min-width: 900px) {
  .praktijk {
    padding: 140px 0 130px;
  }
}

/* ─── Herken jij dit? — desktop ─────────────────────────────────────────── */

@media (min-width: 900px) {
  .herken {
    padding: 120px 80px;
  }

  .herken-opening {
    font-size: 44px;
    margin-bottom: 48px;
  }
}

/* ─── Dienst-pagina ─────────────────────────────────────────────────────── */

.dienst-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(201, 168, 120, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dienst-terug {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.dienst-terug:hover {
  color: var(--accent);
}

.dienst-hero {
  padding: 80px 24px 64px;
  border-bottom: 1px solid rgba(201, 168, 120, 0.15);
}

.dienst-nummer {
  display: block;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.dienst-titel {
  font-family: var(--font-display);
  font-size: clamp(52px, 14vw, 96px);
  font-weight: 600;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.dienst-prijs {
  font-family: var(--font-brand);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dienst-content {
  padding: 64px 24px;
}

.dienst-omschrijving {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}

.dienst-sidebar-label {
  font-family: var(--font-brand);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.dienst-inbegrepen {
  list-style: none;
  margin-bottom: 48px;
}

.dienst-inbegrepen li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 170, 163, 0.12);
}

.dienst-inbegrepen li:first-child {
  border-top: 1px solid rgba(173, 170, 163, 0.12);
}

@media (min-width: 900px) {
  .dienst-nav {
    padding: 20px 80px;
  }

  .dienst-hero {
    padding: 120px 80px 80px;
  }

  .dienst-content {
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
  }

  .dienst-omschrijving {
    margin-bottom: 0;
  }
}

/* ─── Dienst: stappen-sectie ────────────────────────────────────────────── */

.dienst-stappen {
  padding: 64px 24px;
  border-top: 1px solid var(--hairline);
}

.dienst-stappen-grid {
  margin-top: 32px;
}

.dienst-stap {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.dienst-stap:first-child {
  border-top: 1px solid var(--hairline);
}

.dienst-stap-nr {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 3px;
}

.dienst-stap-titel {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.dienst-stap-tekst {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.dienst-resultaat {
  margin-top: 56px;
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
}

@media (min-width: 900px) {
  .dienst-stappen {
    padding: 80px 80px;
  }

  .dienst-stappen-grid {
    max-width: 700px;
  }
}

/* ─── Contactpagina ─────────────────────────────────────────────────────── */

/* Nav */
.contact-page-top {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 10;
}

.contact-page-top .topbar {
  padding: 20px 24px;
}


/* ── Hero: foto als achtergrond, tekst eroverheen ── */
.contact-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.contact-hero-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: var(--photo-filter);
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 31, 38, 0.90) 0%,
    rgba(26, 31, 38, 0.50) 50%,
    rgba(26, 31, 38, 0.20) 100%
  );
  z-index: 1;
}

.contact-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 24px 56px;
}

.contact-hero-eyebrow {
  display: block;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-hero-titel {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 60px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 20px;
}

.contact-hero-titel em {
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

.contact-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.92;
  max-width: 520px;
  margin: 0;
}

/* ─── Contact hero — entrance animation ─────────────────────────────────── */

.contact-hero-eyebrow {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 150ms both;
}

.contact-hero-titel {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 270ms both;
}

.contact-hero-sub {
  animation: hero-fade-up 800ms cubic-bezier(0.19, 1, 0.22, 1) 390ms both;
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-eyebrow,
  .contact-hero-titel,
  .contact-hero-sub {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Form sectie ── */
.contact-form-sectie {
  background: var(--bg-soft);
  padding: 72px 24px 96px;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.contact-section-eyebrow {
  display: block;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-section-titel {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--text);
  margin: 0 0 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-label {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 0;
  transition: border-color 200ms ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.contact-form-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.contact-form-input::placeholder {
  color: var(--text-faint);
}

.contact-form-textarea {
  min-height: 160px;
  resize: vertical;
  border: 1px solid var(--hairline-strong);
  padding: 14px;
}

.contact-form-textarea:focus {
  border-color: var(--accent);
}

.contact-form-actions {
  margin-top: 8px;
}

.contact-form-actions .btn {
  border: none;
  cursor: pointer;
}

.contact-form-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.92;
  margin: 0 0 36px;
}

.contact-form-reactie {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Subtiele onderste link */
.contact-form-of {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form-of a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-left: 4px;
  transition: color 200ms ease;
}

.contact-form-of a:hover {
  color: var(--accent);
}

/* ── Desktop ── */
@media (min-width: 900px) {
  .contact-page-top .topbar {
    padding: 24px 80px;
  }

  .contact-hero {
    height: 85vh;
  }

  .contact-hero-content {
    padding: 0 80px 80px;
    max-width: 760px;
  }

  .contact-form-sectie {
    padding: 96px 80px 120px;
  }
}

/* ── FAQ ── */
.contact-faq {
  background: var(--bg-light);
  padding: 72px 24px 96px;
}

.contact-faq-inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-faq-inner .contact-section-eyebrow {
  margin-bottom: 12px;
}

.contact-faq-inner .contact-section-titel {
  color: var(--bg-deep);
}

.contact-faq-titel {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--bg-deep);
  margin: 0 0 40px;
}

.contact-faq-lijst {
  display: flex;
  flex-direction: column;
}

.contact-faq-item {
  border-bottom: 1px solid rgba(26, 31, 38, 0.15);
}

.contact-faq-item:first-child {
  border-top: 1px solid rgba(26, 31, 38, 0.15);
}

.contact-faq-vraag {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bg-deep);
  padding: 20px 36px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.contact-faq-vraag::-webkit-details-marker { display: none; }

.contact-faq-vraag::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--bg-deep);
  opacity: 0.4;
  transition: transform 200ms ease, opacity 200ms ease;
  line-height: 1;
}

.contact-faq-item[open] .contact-faq-vraag::after {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.7;
}

.contact-faq-antwoord {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  padding: 0 0 20px;
  margin: 0;
  max-width: 480px;
}

@media (min-width: 900px) {
  .contact-faq {
    padding: 96px 80px 120px;
  }
}

/* ─── Over Eloy pagina (oe-) — mobile first ────────────────────────────── */

/* Page header (donkere nav, zelfde als homepage) */
.oe-page-header {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
}

.oe-page-topbar {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Intro sectie */
.oe-intro {
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

.oe-intro-foto-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  flex-shrink: 0;
}

.oe-intro-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: var(--photo-filter);
  display: block;
}

.oe-intro-tekst {
  padding: 56px 24px 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oe-intro-eyebrow {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: -8px;
}

.oe-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

.oe-intro-missie {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  max-width: 640px;
}

.oe-intro-break {
  display: inline;
}

.oe-eyebrow {
  display: block;
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Blok 2: Missie */
.oe-missie {
  background: var(--bg-light);
  padding: 80px 24px;
}

.oe-missie-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.oe-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 5.5vw, 42px);
  font-style: italic;
  font-weight: 500;
  color: var(--bg-deep);
  line-height: 1.2;
  margin: 0;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.oe-missie-tekst {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oe-missie-tekst p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Blok 3: Verhaal */
.oe-verhaal {
  background: var(--bg-light);
}

.oe-verhaal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.oe-verhaal-foto-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 2px;
}

.oe-verhaal-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: var(--photo-filter);
  display: block;
}

.oe-verhaal-tekst {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oe-verhaal-eyebrow {
  color: var(--accent);
  margin-bottom: -8px;
}

.oe-verhaal-tekst .herken-cta {
  margin: -8px 0 0;
}

.oe-verhaal-tekst .oe-verhaal-eyebrow {
  margin-top: 12px;
}

.oe-verhaal-kop {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--bg-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.oe-verhaal-tekst p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.oe-verhaal-tekst .aanbod-basis-lijst li {
  color: var(--text-dark);
}

/* Blok 4: 40e-scharnier */
.oe-veertig {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.oe-veertig-inner {
  max-width: 720px;
  margin: 0 auto;
}

.oe-veertig .oe-eyebrow {
  color: var(--accent);
  opacity: 1;
}

.oe-veertig-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-style: italic;
  font-weight: 600;
  color: var(--bg-deep);
  line-height: 1.15;
  margin: 0 0 36px;
}

.oe-veertig-tekst {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oe-veertig-tekst p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.oe-veertig-brug {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: normal;
  font-family: inherit;
  opacity: 1;
}

/* Blok 5: Filosofie */
.oe-filosofie {
  background: var(--bg-deep);
}

.oe-filosofie-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* Tekst */
.oe-filosofie-tekst {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.oe-filosofie-kop {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}

.oe-overtuigingen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.oe-overtuigingen li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.oe-overt-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}

.oe-overtuigingen li div strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.oe-overtuigingen li div p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* Blok 6: Persoonlijk */
.oe-persoonlijk {
  background: var(--bg-light);
}

.oe-persoonlijk-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Vervolg-blok dat direct onder 'Hoe het begon' staat: minder ruimte erboven */
.oe-persoonlijk--vervolg .oe-persoonlijk-inner {
  padding-top: 0;
}

.oe-persoonlijk-foto-wrap {
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
}

.oe-persoonlijk-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: var(--photo-filter);
  display: block;
}

.oe-persoonlijk-tekst {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oe-persoonlijk-eyebrow {
  margin-bottom: -8px;
}

.oe-persoonlijk-kop {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--bg-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.oe-persoonlijk-tekst p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ─── Over Eloy pagina — desktop ────────────────────────────────────────── */

@media (min-width: 900px) {
  .oe-page-topbar {
    padding: 28px 64px;
  }

  .oe-intro {
    flex-direction: row;
    min-height: 700px;
  }

  .oe-intro-foto-wrap {
    flex: 0 0 33.333%;
    height: auto;
  }

  .oe-intro-tekst {
    flex: 1;
    padding: 80px 80px 80px 72px;
    justify-content: center;
    gap: 28px;
  }

  .oe-intro-eyebrow {
    margin-bottom: -16px;
  }

  .oe-intro-heading {
    font-size: 52px;
  }

  .oe-intro-break {
    display: block;
  }

  .oe-missie {
    padding: 120px 80px;
  }

  .oe-missie-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .oe-quote {
    flex: 0 0 42%;
  }

  .oe-missie-tekst {
    flex: 1;
    padding-top: 6px;
  }

  .oe-verhaal-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 120px 80px;
  }

  .oe-verhaal-tekst {
    flex: 0 0 50%;
    gap: 24px;
    justify-content: center;
    align-self: center;
  }

  .oe-verhaal-eyebrow {
    margin-bottom: -12px;
  }

  .oe-verhaal-foto-wrap {
    flex: 0 0 42%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .oe-verhaal-foto {
    width: 95%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 30%;
  }

  .oe-veertig {
    padding: 120px 80px;
  }

  .oe-filosofie-inner {
    padding: 120px 40px;
  }

  .oe-persoonlijk-inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 120px 80px;
  }

  .oe-persoonlijk-foto-wrap {
    flex: 0 0 42%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .oe-persoonlijk-foto {
    width: 95%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center 20%;
  }

  .oe-persoonlijk-tekst {
    flex: 1;
    align-self: center;
  }

  .oe-persoonlijk-eyebrow {
    margin-bottom: -8px;
  }
}

/* ─── Over Eloy — CTA hero ─────────────────────────────────────────────────── */

.oe-cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oe-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) contrast(1.05) saturate(0.9);
  display: block;
}

.oe-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,31,38,0.3) 0%, rgba(26,31,38,0.65) 100%);
}

.oe-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.oe-cta-eyebrow {
  font-family: var(--font-brand);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: -16px;
}

.oe-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}

.oe-cta-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.82;
  max-width: 720px;
}

.oe-cta-inner .btn {
  margin-top: 24px;
}

.oe-cta-mail {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -8px;
}

.oe-cta-mail a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 200ms ease;
}

.oe-cta-mail a:hover { opacity: 0.75; }

/* ─── Hamburger + mobiel overlay menu ─────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: opacity 200ms ease;
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  padding: 28px 32px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.mob-menu--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mob-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 40px;
  transition: color 200ms ease;
}

.mob-menu-close:hover { color: var(--text); }

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mob-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mob-nav-label {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.mob-nav-sub {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  padding-left: 12px;
  border-left: 1px solid var(--accent);
  transition: color 200ms ease;
}

.mob-nav-sub:hover { color: var(--text); }

.mob-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 200ms ease;
}

.mob-nav-link:hover { color: var(--accent); }

.mob-nav-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent);
  color: var(--btn-text);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  text-align: center;
  transition: opacity 200ms ease;
}

.mob-nav-cta:hover { opacity: 0.88; }

@media (max-width: 899px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .aanbod-basis-foto-wrap { display: none; }

  /* Contact hero overlay sterker op mobiel */
  .contact-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(26, 31, 38, 0.97) 0%,
      rgba(26, 31, 38, 0.82) 45%,
      rgba(26, 31, 38, 0.55) 100%
    );
  }

  /* Hero-titels subpagina's: zelfde grootte als homepage hero */
  .contact-hero-titel,
  .oe-intro-heading {
    font-size: clamp(44px, 12vw, 80px);
  }

  /* Body tekst: overal 16px */
  .contact-hero-sub,
  .contact-form-intro,
  .contact-faq-antwoord,
  .oe-overtuigingen,
  .oe-cta-body {
    font-size: 15px;
  }

  /* Titels: 32px op mobiel, desktop behoudt eigen clamp-waarden */
  .over-naam,
  .herken-opening,
  .aanbod-basis-titel,
  .aanbod-ook-titel,
  .aanbod-ook-card-titel,
  .praktijk-kop,
  .cta-slot-heading,
  .contact-hero-titel,
  .contact-section-titel,
  .contact-faq-titel,
  .oe-intro-heading,
  .oe-quote,
  .oe-verhaal-kop,
  .oe-veertig-quote,
  .oe-filosofie-kop,
  .oe-persoonlijk-kop,
  .oe-cta-heading {
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  .mob-menu { display: none; }

  /* CTA-kop op desktop op één regel houden */
  .oe-cta-heading { white-space: nowrap; }
}


