/* Shared styles for all three redesigns */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--mvk-ink);
  background: var(--mvk-bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reveal-on-scroll utility */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1); }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 100ms; } .rv-d2 { transition-delay: 200ms; } .rv-d3 { transition-delay: 320ms; } .rv-d4 { transition-delay: 440ms; } .rv-d5 { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .rv { transition: opacity 400ms ease; transform: none; }
}

/* Nav (shared base) */
.rd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 249, 246, 0.78);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(227, 229, 233, 0.5);
  height: 80px;
}
.rd-nav-inner { max-width: 1320px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 4vw, 48px); }
.rd-nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.rd-nav-logo .mark { width: 28px; height: 28px; }
.rd-nav-logo .word { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mvk-blue-700); font-weight: 400; }
.rd-nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.rd-nav-links a { color: var(--mvk-graphite); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.04em; position: relative; padding: 6px 0; transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1); }
.rd-nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: currentColor; transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1); }
.rd-nav-links a:hover { color: var(--mvk-blue-700); }
.rd-nav-links a:hover::after { width: 100%; }

/* Disclaimer style — italic serif, used everywhere */
.disc { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--mvk-stone); line-height: 1.65; }
.disc--lg { font-size: 16px; }

/* CTA pill */
.rd-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--mvk-ink); color: var(--mvk-bone); padding: 14px 28px; border-radius: 999px; font-size: 13px; letter-spacing: 0.05em; text-decoration: none; border: none; cursor: pointer; transition: background 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 200ms cubic-bezier(0.16, 1, 0.3, 1); font-family: var(--font-sans); }
.rd-cta:hover { background: var(--mvk-blue-700); }
.rd-cta:active { transform: scale(0.98); }
.rd-cta svg { width: 14px; height: 8px; stroke: currentColor; }

/* Device frame for video placeholder */
.rd-device {
  position: relative;
  background: linear-gradient(155deg, #2a2e36 0%, #15181d 60%);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow-hero);
}
.rd-device::before { content:""; position:absolute; left:50%; top:6px; transform:translateX(-50%); width:60px; height:5px; background: rgba(255,255,255,0.08); border-radius:3px;}
.rd-device-screen {
  position: relative;
  background: var(--mvk-blue-500);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rd-device-screen .placeholder-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.rd-device-screen .play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rd-device-screen .play:hover { background: rgba(255,255,255,0.22); transform: scale(1.06); }
.rd-device-screen .play svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }

/* Footer (shared base) */
.rd-footer { padding: 56px clamp(20px, 4vw, 48px) 32px; border-top: 1px solid var(--mvk-fog); margin-top: 80px;}
.rd-footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;}
.rd-footer-mark { display: flex; align-items: center; gap: 14px; }
.rd-footer-mark .word { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mvk-blue-700); }
.rd-footer-mark svg { width: 28px; height: 28px;}
.rd-footer-links { display: flex; gap: 40px; flex-wrap: wrap; font-size: 12px; color: var(--mvk-graphite);}
.rd-footer-links a { color: inherit; text-decoration: none; }
.rd-footer-links a:hover { color: var(--mvk-blue-700); }
.rd-footer-copy { max-width: 1320px; margin: 32px auto 0; font-size: 11px; color: var(--mvk-stone); letter-spacing: 0.02em; }

@media (max-width: 720px) {
  .rd-footer-grid { grid-template-columns: 1fr; }
  .rd-nav-links { gap: 18px; }
}

/* The 3 brand text blocks (Praktijk · Werkwijze · Locatie) — shared across variants */
.rd-content { max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.rd-block { padding: clamp(80px, 12vw, 140px) 0; border-top: 1px solid var(--mvk-fog); }
.rd-block:first-of-type { border-top: none; }
.rd-block-grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(40px, 7vw, 96px); }
.rd-block-label { position: sticky; top: 110px; align-self: start; }
.rd-block-num { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 14px; color: var(--mvk-blue-500); letter-spacing: 0.05em; margin-bottom: 16px;}
.rd-block-h2 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--mvk-ink); margin: 0;}
.rd-block-h2 em { font-style: italic; color: var(--mvk-blue-700); }
.rd-block-eye { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mvk-stone); font-weight: 500; margin-bottom: 32px;}
.rd-block-body { max-width: 700px; }
.rd-block-body p { font-size: 16px; line-height: 1.78; color: var(--mvk-charcoal); margin: 0 0 22px;}
.rd-block-body a { color: var(--mvk-ink); border-bottom: 1px solid var(--mvk-blue-300); text-decoration: none; padding-bottom: 1px; transition: border-color 320ms cubic-bezier(0.16, 1, 0.3, 1);}
.rd-block-body a:hover { border-color: var(--mvk-ink); }

@media (max-width: 760px) {
  .rd-block-grid { grid-template-columns: 1fr; gap: 28px; }
  .rd-block-label { position: static; }
}
