/* ==========================================================================
   Velto — style.css  (V3 Cinematic Edition)
   ========================================================================== */

/* ── Google Fonts ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Inter:wght@300;400;600&display=swap');

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:       #FAFAF8;
  --bg-dark:  #0A0A0A;
  --accent:   #FF4D00;
  --accent2:  #E8E0D5;
  --ink:      #0A0A0A;
  --ink-inv:  #FAFAF8;
  --muted:    #999490;
  --border:   rgba(10,10,10,.1);
  --border-d: rgba(250,250,248,.08);

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --ease-o:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-i:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Prevent scroll while preloader is visible */
body:not(.loaded) { overflow: hidden; }

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
input, textarea, select, button { font: inherit; }
button { background: none; border: none; cursor: none; }

/* ── Scroll progress bar ────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 2000;
  pointer-events: none;
  transform-origin: left;
}

/* ── Preloader ──────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
}
.pre-panel {
  position: absolute;
  left: 0; width: 100%;
  background: var(--bg-dark);
  z-index: 2;
}
.pre-panel--top { top: 0;    height: 50%; }
.pre-panel--bot { bottom: 0; height: 50%; }
.pre-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  gap: 28px;
  pointer-events: none;
}
.pre-logo {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(32px, 5vw, 60px);
  color: var(--ink-inv);
  letter-spacing: -0.02em;
}
.pre-bar {
  width: 180px;
  height: 1px;
  background: rgba(250,250,248,.12);
  position: relative;
  overflow: hidden;
}
.pre-bar__fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
}
.pre-pct {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,.3);
}

/* ── Custom cursor ──────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: background 0.2s, width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-o),
              height 0.35s var(--ease-o),
              border-color 0.3s,
              mix-blend-mode 0.1s;
  will-change: left, top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cursor-ring__label {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s;
  color: var(--ink);
  white-space: nowrap;
}
body.cur-hover .cursor-ring {
  width: 80px;
  height: 80px;
  mix-blend-mode: difference;
  border-color: white;
}
body.cur-hover .cursor-dot { background: white; mix-blend-mode: difference; }
body.cur-img .cursor-ring   { width: 80px; height: 80px; }
body.cur-img .cursor-ring__label { opacity: 1; }
body.cur-img .cursor-dot { opacity: 0; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 500;
  padding: 28px clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-o),
              background 0.4s,
              backdrop-filter 0.4s,
              box-shadow 0.4s;
}
.nav.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(250,250,248,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10,10,10,.06);
}
.nav__logo {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-inv);
  transition: color 0.4s;
}
.nav.scrolled .nav__logo,
.nav.light .nav__logo      { color: var(--ink); }
.nav.dark .nav__logo        { color: var(--ink-inv); }
.nav.dark.scrolled .nav__logo { color: var(--ink); }

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-inv);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-o);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a,
.nav.light .nav__links a    { color: var(--ink); }
.nav.dark .nav__links a     { color: var(--ink-inv); }
.nav.dark.scrolled .nav__links a { color: var(--ink); }

.nav__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__ham span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-inv);
  transition: background 0.4s, transform 0.3s;
}
.nav.scrolled .nav__ham span,
.nav.light .nav__ham span { background: var(--ink); }
.nav.dark .nav__ham span { background: var(--ink-inv); }

/* Mobile overlay */
.nav-ov {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-o);
}
.nav-ov.open { opacity: 1; pointer-events: all; }
.nav-ov a {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(28px, 8vw, 56px);
  color: var(--ink-inv);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-o),
              transform 0.5s var(--ease-o),
              color 0.2s;
}
.nav-ov.open a           { opacity: 1; transform: none; }
.nav-ov.open a:nth-child(1) { transition-delay: 0.08s; }
.nav-ov.open a:nth-child(2) { transition-delay: 0.14s; }
.nav-ov.open a:nth-child(3) { transition-delay: 0.20s; }
.nav-ov.open a:nth-child(4) { transition-delay: 0.26s; }
.nav-ov a:hover { color: var(--accent); }
.nav-ov__close {
  position: absolute;
  top: 24px;
  right: clamp(24px, 6vw, 96px);
  color: rgba(250,250,248,.5);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-ov__sub {
  position: absolute;
  bottom: 32px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(250,250,248,.2);
  text-transform: uppercase;
}

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
}
.sec {
  padding: clamp(80px, 10vw, 160px) 0;
}
.sec--dark {
  background: var(--bg-dark);
  color: var(--ink-inv);
}

/* ── Eyebrow label ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.sec--dark .eyebrow { color: rgba(250,250,248,.35); }

/* ── Scroll indicator ───────────────────────────────────────────────────── */
.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-ind__line {
  width: 1px;
  height: 40px;
  background: rgba(250,250,248,.2);
  position: relative;
  overflow: hidden;
}
.scroll-ind__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250,250,248,.7);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.scroll-ind__label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,.4);
}

/* ── Hero (homepage) ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  display: block;
}
.hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,.65) 0%,
    rgba(10,10,10,.25) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 6vw, 96px);
  padding-top: 80px;
  max-width: min(860px, 60vw);
}
@media (max-width: 768px) { .hero__content { max-width: 100%; } }

.hero__eye {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,.5);
  margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-inv);
  margin-bottom: 28px;
  overflow: visible;
}
/* Each character wrapper */
.hero__h1 .char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.hero__h1 .char-inner {
  display: inline-block;
}
.hero__sub {
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
  color: rgba(250,250,248,.7);
  max-width: 440px;
}
.hero__cta-wrap {
  position: absolute;
  bottom: 48px;
  right: clamp(24px, 6vw, 96px);
  z-index: 2;
}

/* Hero — small (inner pages) */
.hero--sm {
  height: 70vh;
  min-height: 480px;
  align-items: flex-end;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero--sm .hero__content {
  padding-top: 0;
  max-width: 100%;
}
.hero--sm .hero__h1 {
  font-size: clamp(44px, 6vw, 90px);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-o), border-color 0.35s;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-o);
  z-index: -1;
}
.btn:hover::before  { transform: scaleX(1); }
.btn:hover          { color: #fff; border-color: var(--accent); }

.btn--light  { color: var(--ink-inv); border-color: rgba(250,250,248,.35); }
.btn--dark   { color: var(--ink);     border-color: rgba(10,10,10,.35); }
.btn--accent { color: #fff; background: var(--accent); border-color: var(--accent); }
.btn--accent::before { background: var(--bg-dark); }

.btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease-o); }
.btn:hover svg { transform: translateX(4px); }

/* ── Stats section ──────────────────────────────────────────────────────── */
.stats {
  background: var(--bg-dark);
  padding: 72px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stats__item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border-d);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  display: block;
}
.stats__label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,.35);
}

/* ── About home (split sticky) ──────────────────────────────────────────── */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.about-home__sticky {
  position: sticky;
  top: 28vh;
}
.about-home__sticky h2 {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.about-home__img {
  margin-top: 48px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-home__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
}
.about-home__text p {
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.about-home__text p strong { color: var(--ink); font-weight: 600; }
.about-home__text p:last-child { margin-bottom: 0; }

/* ── Horizontal scroll ──────────────────────────────────────────────────── */
.h-scroll-section {
  overflow: hidden;
  background: var(--bg-dark);
  will-change: auto;
}
.h-scroll-track {
  display: flex;
  width: max-content;
}
.h-scroll-header {
  min-width: 38vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 8vw, 120px) 0 clamp(48px, 8vw, 120px) clamp(24px, 6vw, 96px);
  padding-right: 48px;
}
.h-scroll-header h2 {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink-inv);
  margin-bottom: 24px;
}
.h-scroll-header p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,250,248,.4);
  max-width: 320px;
}
.svc-card {
  min-width: 44vw;
  height: 100vh;
  padding: clamp(40px, 6vw, 72px);
  border-left: 1px solid var(--border-d);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-o);
}
.svc-card:hover { background: var(--accent); }
.svc-card__bg-num {
  position: absolute;
  top: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(100px, 16vw, 200px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(250,250,248,.04);
  user-select: none;
  pointer-events: none;
  transition: color 0.5s var(--ease-o);
}
.svc-card:hover .svc-card__bg-num { color: rgba(0,0,0,.06); }
.svc-card__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,.3);
  margin-bottom: 14px;
  transition: color 0.4s;
}
.svc-card:hover .svc-card__label { color: rgba(0,0,0,.45); }
.svc-card__title {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-inv);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.svc-card:hover .svc-card__title { color: var(--bg-dark); }
.svc-card__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,250,248,.45);
  max-width: 380px;
  transition: color 0.4s;
}
.svc-card:hover .svc-card__text { color: rgba(0,0,0,.55); }
.svc-card__arrow {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,248,.25);
  transition: color 0.4s, gap 0.3s;
}
.svc-card:hover .svc-card__arrow { color: rgba(0,0,0,.5); gap: 16px; }

/* ── Werkwijze (sticky process) ─────────────────────────────────────────── */
.werkwijze {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.werkwijze__left {
  position: sticky;
  top: 28vh;
}
.werkwijze__left h2 {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.werkwijze__left p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
}
.stap {
  padding: 36px 0 36px 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.stap__line {
  position: absolute;
  top: 0; left: 0;
  width: 1.5px;
  height: 0%;
  background: var(--accent);
  transition: height 0.8s var(--ease-o);
}
.stap.on .stap__line { height: 100%; }
.stap__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10,10,10,.07);
  margin-bottom: 4px;
  user-select: none;
}
.stap__title {
  font-family: var(--ff-head);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stap__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Testimonial ────────────────────────────────────────────────────────── */
.testi {
  background: var(--bg-dark);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 96px);
  text-align: center;
}
.testi__mark {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 100px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 40px;
  opacity: 0.55;
}
.testi__text {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-inv);
  max-width: 820px;
  margin: 0 auto 28px;
}
.testi__name {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(250,250,248,.3);
  text-transform: uppercase;
}

/* ── CTA section ────────────────────────────────────────────────────────── */
.cta-sec {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 96px);
  text-align: center;
  background: var(--bg);
}
.cta-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(80px, 20vw, 300px);
  letter-spacing: -0.04em;
  color: rgba(10,10,10,.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  white-space: nowrap;
}
.cta-sec h2 {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-sec .btn { position: relative; z-index: 1; }

/* ── Image reveal wrapper ───────────────────────────────────────────────── */
.img-reveal          { overflow: hidden; }
.img-reveal img,
[data-img-reveal]    { clip-path: inset(0 100% 0 0); will-change: clip-path; }

/* ── Footer reveal ──────────────────────────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 1;
  background: inherit;
}
footer {
  position: sticky;
  bottom: 0;
  z-index: 0;
  background: var(--bg-dark);
  color: var(--ink-inv);
}
.footer-inner {
  padding: clamp(56px, 8vw, 100px) clamp(24px, 6vw, 96px) 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer__brand {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer__tagline {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250,250,248,.35);
  max-width: 240px;
}
.footer__col-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,.25);
  margin-bottom: 20px;
}
.footer__links    { display: flex; flex-direction: column; gap: 10px; }
.footer__links a  {
  font-weight: 300;
  font-size: 14px;
  color: rgba(250,250,248,.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border-d);
  padding: 20px clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(250,250,248,.2);
}

/* ── Contact info list ──────────────────────────────────────────────────── */
.ci-list {
  border: 1px solid var(--border);
  margin-top: 40px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-child { border-bottom: none; }
.ci-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 14px; height: 14px; }
.ci-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.ci-val { font-weight: 300; font-size: 14px; }
.ci-val a { color: inherit; transition: color 0.2s; }
.ci-val a:hover { color: var(--accent); }

/* ── Contact form ───────────────────────────────────────────────────────── */
.contact-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 0; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { position: relative; margin-bottom: 24px; }
/* Floating label */
.f-group .f-label {
  position: absolute;
  top: 14px; left: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.3s var(--ease-o),
              font-size 0.3s var(--ease-o),
              color 0.3s,
              letter-spacing 0.3s;
}
.f-group .f-in:focus   ~ .f-label,
.f-group .f-in:not(:placeholder-shown) ~ .f-label,
.f-group .f-ta:focus   ~ .f-label,
.f-group .f-ta:not(:placeholder-shown) ~ .f-label,
.f-group .f-sel:focus  ~ .f-label,
.f-group .f-sel.has-val ~ .f-label {
  top: -16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.f-in, .f-ta, .f-sel {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10,10,10,.18);
  padding: 12px 0 10px;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.f-in:focus, .f-ta:focus, .f-sel:focus { border-color: var(--accent); }
.f-ta  { resize: none; height: 100px; }
.f-sel { cursor: none; }
.f-note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 24px;
}
.f-ok {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,77,0,.2);
  background: rgba(255,77,0,.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.f-ok.show { opacity: 1; transform: none; pointer-events: all; }
.f-ok svg  { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.f-ok strong { font-weight: 600; font-size: 13px; display: block; margin-bottom: 2px; }
.f-ok span   { font-weight: 300; font-size: 12px; color: var(--muted); }

.f-promise {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 32px;
}

/* ── Over pagina — split ────────────────────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 12vh;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-tblock {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}
.about-tblock:last-child { margin-bottom: 0; }
.about-tblock__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-tblock__body {
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: var(--muted);
}
.feat-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10,10,10,.07);
}
.feat-card {
  background: var(--bg);
  padding: 44px 36px;
}
.feat-card__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.feat-card__title {
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feat-card__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Stats mini (over pagina) */
.stats-mini {
  display: flex;
  gap: 56px;
  margin-top: 44px;
}
.stats-mini__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stats-mini__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Diensten page ──────────────────────────────────────────────────────── */
.dienst-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 68vh;
  border-top: 1px solid var(--border);
}
.dienst-block--flip { direction: rtl; }
.dienst-block--flip > * { direction: ltr; }
.dienst-block__img {
  overflow: hidden;
  background: var(--accent2);
}
.dienst-block__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-o);
  clip-path: inset(0 100% 0 0);
}
.dienst-block:hover .dienst-block__img img { transform: scale(1.04); }
.dienst-block__body {
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dienst-block__num {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 72px;
  color: rgba(10,10,10,.06);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  user-select: none;
}
.dienst-block__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.dienst-block__title {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.dienst-block__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}
.dienst-block__text:last-of-type { margin-bottom: 0; }
.dienst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.dienst-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(10,10,10,.15);
  color: var(--muted);
}

/* ── Legal ──────────────────────────────────────────────────────────────── */
.legal-header {
  padding: clamp(120px, 15vw, 200px) clamp(24px, 6vw, 96px) clamp(48px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}
.legal-header__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 12px;
}
.legal { max-width: 720px; }
.legal-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; }
.legal-block__title {
  font-family: var(--ff-head);
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.legal-block__body p {
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-block__body p:last-child { margin-bottom: 0; }
.legal-block__body a { color: var(--accent); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-home, .about-content, .werkwijze, .contact-g {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-home__sticky, .werkwijze__left, .about-photo {
    position: static;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feat-g       { grid-template-columns: 1fr; }
  .dienst-block { grid-template-columns: 1fr; min-height: auto; }
  .dienst-block--flip { direction: ltr; }
  .dienst-block__img  { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__ham   { display: flex; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid var(--border-d); }
  .stats__item:last-child { border-bottom: none; }
  /* Disable horizontal scroll on mobile */
  .h-scroll-section { overflow: visible; }
  .h-scroll-track   { flex-direction: column; width: 100%; }
  .h-scroll-header  { min-width: 100%; padding: 56px clamp(24px,6vw,96px) 24px; }
  .svc-card         { min-width: 100%; height: auto; padding: 40px 24px 48px; }
  .f-row            { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 28px; }
  .stats-mini       { flex-wrap: wrap; gap: 32px; }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body  { cursor: auto; }
  button, a { cursor: pointer; }
}
