/* ============================================
   MUSE AGENCY — Stylesheet v2
   ============================================ */

/* --- Variables & Reset --- */
:root {
  --burgundy:      #380e0e;
  --burgundy-dark: #240808;
  --burgundy-mid:  #4d1515;
  --burgundy-glow: #6b2020;
  --cream:         #f5ede3;
  --off-white:     #faf7f4;
  --warm-black:    #1a0808;
  --accent:        #c4a99a;   /* warm mauve/dusty rose — geen goud */
  --accent-light:  #dfd0c6;
  --text-muted:    #8a6a6a;
  --border:        rgba(56,14,14,0.1);
  --border-light:  rgba(245,237,227,0.1);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-height:     96px;
  --section-pad:    130px;
  --section-pad-sm: 80px;
  --container-max:  1320px;
  --container-px:   60px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:          0.4s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--warm-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--burgundy-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ─── Custom Cursor ──────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  width: 8px; height: 8px;
  background: var(--cream);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  pointer-events: none;
  z-index: 9999;
}
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,237,227,0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease), width .3s, height .3s, border-color .3s;
  pointer-events: none;
  z-index: 9998;
}
body.cursor-hover .cursor__dot { width: 14px; height: 14px; }
body.cursor-hover .cursor__ring {
  width: 60px; height: 60px;
  border-color: var(--accent);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
}
h1 { font-size: clamp(3.2rem, 6.5vw, 6.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

p { font-size: .95rem; line-height: 1.85; color: var(--text-muted); font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-pad) 0; }
.section--cream  { background: var(--cream); }
.section--burg   { background: var(--burgundy); }
.section--dark   { background: var(--burgundy-dark); }
.text-center     { text-align: center; }
.text-cream      { color: var(--cream); }
.text-accent     { color: var(--accent); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 44px;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: none;
  transition: transform var(--t) var(--ease-back),
              box-shadow var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--cream); color: var(--burgundy-dark);
}
.btn--primary:hover {
  box-shadow: 0 16px 48px rgba(56,14,14,.2);
}
.btn--outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,237,227,.3);
}
.btn--outline:hover { border-color: var(--cream); }

.btn--outline-dark {
  background: transparent; color: var(--burgundy);
  border: 1px solid rgba(56,14,14,.3);
}
.btn--outline-dark:hover {
  background: var(--burgundy); color: var(--cream);
}

.btn-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--t) var(--ease);
  cursor: none;
}
.btn-arrow::after { content: '→'; transition: transform var(--t) var(--ease); }
.btn-arrow:hover::after { transform: translateX(8px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--burgundy);
  height: var(--nav-height);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .4s var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 60px rgba(0,0,0,.4); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--container-px);
}
.nav__logo { display: flex; align-items: center; height: 88px; }
.nav__logo img { height: 88px; width: auto; object-fit: contain; }

.nav__links { display: flex; align-items: center; gap: 48px; }
.nav__links a {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,237,227,.6);
  transition: color var(--t); cursor: none;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t) var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  font-size: .66rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196,169,154,.35);
  padding: 10px 24px;
  transition: var(--t); cursor: none;
}
.nav__cta:hover { background: var(--accent); color: var(--burgundy-dark); border-color: var(--accent); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; padding: 8px; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream);
  transition: var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; inset: 0;
  background: var(--burgundy-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.nav__mobile.open { opacity: 1; transform: none; pointer-events: all; }
.nav__mobile a {
  font-family: var(--font-heading); font-size: 3rem;
  color: var(--cream); transition: color var(--t);
}
.nav__mobile a:hover { color: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--burgundy-dark);
  padding: 90px 0 44px;
  border-top: 1px solid var(--border-light);
}
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 64px;
}
.footer__logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer__tagline { font-size: .85rem; color: rgba(245,237,227,.4); line-height: 1.8; max-width: 220px; }
.footer__col h5 {
  font-family: var(--font-body); font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col ul a {
  font-size: .88rem; color: rgba(245,237,227,.5);
  transition: color var(--t); letter-spacing: .02em;
}
.footer__col ul a:hover { color: var(--cream); }
.footer__socials { display: flex; gap: 14px; margin-top: 28px; }
.footer__social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,227,.4); font-size: .75rem;
  transition: var(--t); cursor: none;
}
.footer__social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copyright { font-size: .72rem; color: rgba(245,237,227,.25); letter-spacing: .06em; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out),
              transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .32s; }
.reveal--delay-4 { transition-delay: .44s; }
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.visible, .reveal--right.visible { transform: none; opacity: 1; }

/* ─── Line reveal ─── */
.line-wrap { overflow: hidden; }
.line-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
}
.line-wrap.visible .line-inner { transform: none; }

/* ─── Character split (applied via JS) ─── */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotateX(-40deg);
  transition: opacity .6s var(--ease-out),
              transform .6s var(--ease-out);
}
.char.visible { opacity: 1; transform: none; }

/* ============================================
   AMBIENT ORBS (used in hero & dark sections)
   ============================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,169,154,.12), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(107,32,32,.35), transparent 70%);
  bottom: -80px; left: -80px;
  animation-delay: -4s;
}
.orb--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,169,154,.07), transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(.96); }
}

/* Grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 998;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grainShift 1.4s steps(1) infinite;
}
@keyframes grainShift {
  0%  { transform: translate(0,0); }
  20% { transform: translate(-3%, -4%); }
  40% { transform: translate(-6%, 2%); }
  60% { transform: translate(3%, -1%); }
  80% { transform: translate(-4%, 5%); }
  100%{ transform: translate(2%, -3%); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--burgundy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 0;
  animation: marqueeScroll 28s linear infinite;
}
.marquee__track span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 300;
  font-style: italic;
  color: rgba(245,237,227,.45);
  padding: 0 32px;
  letter-spacing: .04em;
}
.marquee__track span.accent {
  color: var(--accent);
  font-style: normal;
  font-size: .65rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 0 24px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--burgundy-dark);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  /* Geen padding-top — elke kolom regelt dit zelf */
}

/* Orbs en hero__scroll zijn position:absolute — geen grid-items */
.hero > .orb { pointer-events: none; }

.hero__content {
  position: relative; z-index: 2;
  padding: calc(var(--nav-height) + 80px) 60px 80px var(--container-px);
  display: flex; flex-direction: column;
  justify-content: center;
}

.hero__label {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.hero__label::before {
  content: ''; display: block;
  width: 48px; height: 1px; background: var(--accent);
}
.hero__title {
  color: var(--cream);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 36px;
}
.hero__title em { font-style: italic; color: var(--accent-light); }

.hero__desc {
  color: rgba(245,237,227,.6);
  font-size: 1rem; line-height: 1.8; font-weight: 300;
  margin-bottom: 44px;
  max-width: 460px;
}
.hero__ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ─── Hero video — vult exact van nav-onderkant t/m hero-onderkant ─── */
.hero__video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--burgundy-mid);
  /* geen aspect-ratio: vult de volledige grid-kolomhoogte (= 100vh) */
}
.hero__video-wrap video {
  position: absolute;
  top: var(--nav-height);   /* start exact onder de navigatiebalk */
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: calc(100% - var(--nav-height));
  object-fit: cover;
}
/* Placeholder zolang video nog niet aanwezig is */
.hero__video-wrap__placeholder {
  display: none !important;
  position: absolute;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  pointer-events: none;
}
.hero__video-wrap__placeholder-text {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-style: italic; color: rgba(245,237,227,.25);
  letter-spacing: .08em;
}
.hero__video-wrap__placeholder-label {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); opacity: .5;
}

.hero__scroll {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(245,237,227,.3);
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero__scroll::after {
  content: ''; display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1) translateY(0); }
  50%      { opacity: .8; transform: scaleY(.85) translateY(4px); }
}

/* ─── Hero line decoration ─── */
.hero__line {
  position: absolute; right: var(--container-px); top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(245,237,227,.18);
  display: flex; align-items: center; gap: 16px;
}
.hero__line::before {
  content: ''; width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(245,237,227,.2));
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.intro__inner {
  max-width: 880px; margin: 0 auto;
  text-align: center; padding: 0 var(--container-px);
}
.intro__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.5; font-weight: 300; font-style: italic;
  color: var(--warm-black); margin-bottom: 32px;
}
.intro__text { max-width: 560px; margin: 0 auto; }
.intro__divider { width: 1px; height: 80px; background: var(--accent); margin: 48px auto 0; opacity: .5; }

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--burgundy);
  padding: 90px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border-light);
}
.stat-item {
  background: var(--burgundy); padding: 56px 40px;
  text-align: center;
  transition: background var(--t);
}
.stat-item:hover { background: var(--burgundy-mid); }
.stat-item__num {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300; color: var(--cream);
  line-height: 1; margin-bottom: 12px;
  display: block;
}
.stat-item__label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   AI SECTIE
   ============================================ */
.ai-section {
  background: var(--burgundy-dark);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.ai-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.ai-section__label { margin-bottom: 20px; display: block; }
.ai-section h2 {
  color: var(--cream); margin-bottom: 28px;
}
.ai-section > .container > .ai-section__inner p {
  color: rgba(245,237,227,.6); font-size: .95rem; margin-bottom: 36px;
}
.ai-features {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 44px;
}
.ai-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.ai-feature:first-child { border-top: 1px solid var(--border-light); }
.ai-feature__icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(196,169,154,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: .9rem;
  color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.ai-feature__title {
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 500; letter-spacing: .08em;
  color: var(--cream); margin-bottom: 6px;
  text-transform: uppercase;
}
.ai-feature__desc {
  font-size: .88rem; color: rgba(245,237,227,.5); line-height: 1.7;
}

/* AI Visual */
.ai-visual {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.ai-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,169,154,.15);
  animation: ringPulse 4s ease-in-out infinite;
}
.ai-visual__ring:nth-child(1) {
  width: 300px; height: 300px;
  animation-delay: 0s;
}
.ai-visual__ring:nth-child(2) {
  width: 420px; height: 420px;
  animation-delay: -.8s; opacity: .7;
}
.ai-visual__ring:nth-child(3) {
  width: 520px; height: 520px;
  animation-delay: -1.6s; opacity: .4;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.ai-visual__core {
  position: relative; z-index: 2;
  text-align: center;
  width: 180px; height: 180px;
  border: 1px solid rgba(196,169,154,.2);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(36,8,8,.6);
  backdrop-filter: blur(10px);
}
.ai-visual__core-text {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-style: italic; color: var(--cream); line-height: 1.2;
}
.ai-visual__core-sub {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.ai-visual__dots {
  position: absolute; inset: 0;
  animation: rotateDots 20s linear infinite;
}
.ai-visual__dot {
  position: absolute; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
  opacity: .6;
}

/* ============================================
   DIENSTEN
   ============================================ */
.diensten { background: var(--cream); padding: var(--section-pad) 0; }

.section-header { margin-bottom: 72px; }
.section-header h2 { margin-top: 16px; }

.diensten__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border: 1px solid var(--border);
}
.dienst-card {
  padding: 56px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  cursor: none;
  transition: background var(--t);
}
.dienst-card:last-child { border-right: none; }
.dienst-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.dienst-card:hover::after { transform: scaleX(1); }
.dienst-card:hover { background: var(--off-white); }

.dienst-card__num {
  font-family: var(--font-heading);
  font-size: 4rem; font-weight: 300;
  color: rgba(56,14,14,.07); line-height: 1;
  margin-bottom: 28px;
  transition: color var(--t);
}
.dienst-card:hover .dienst-card__num { color: rgba(56,14,14,.12); }
.dienst-card h3 { font-size: 1.4rem; color: var(--burgundy); margin-bottom: 16px; }
.dienst-card p  { font-size: .88rem; line-height: 1.8; margin-bottom: 32px; }

/* ============================================
   PORTFOLIO TEASER (tekst-gebaseerd)
   ============================================ */
.portfolio-teaser { background: var(--off-white); padding: var(--section-pad) 0; }

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
}
.teaser-card {
  background: var(--burgundy-dark);
  padding: 64px 48px;
  position: relative; overflow: hidden;
  cursor: none; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: background var(--t);
}
.teaser-card:nth-child(2) { background: var(--burgundy); }
.teaser-card:nth-child(3) { background: var(--cream); }
.teaser-card:nth-child(3) .teaser-card__cat,
.teaser-card:nth-child(3) .teaser-card__title { color: var(--warm-black); }
.teaser-card:nth-child(3) .teaser-card__title { color: var(--burgundy); }
.teaser-card:nth-child(4) { background: var(--burgundy-mid); }
.teaser-card:nth-child(1) { grid-row: span 2; min-height: 600px; }

.teaser-card__num {
  position: absolute; top: 40px; right: 40px;
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 300;
  color: rgba(255,255,255,.05); line-height: 1;
  transition: var(--t);
}
.teaser-card:nth-child(3) .teaser-card__num { color: rgba(56,14,14,.05); }
.teaser-card:hover .teaser-card__num { color: rgba(255,255,255,.1); }

.teaser-card__cat {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.teaser-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--cream); font-weight: 400;
  line-height: 1.2; margin-bottom: 16px;
}
.teaser-card__line {
  width: 0; height: 1px; background: var(--accent);
  transition: width .6s var(--ease);
  margin-top: 20px;
}
.teaser-card:hover .teaser-card__line { width: 48px; }

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  background: var(--burgundy);
  padding: 130px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.statement__mark {
  position: absolute; top: -40px; left: 80px;
  font-family: var(--font-heading);
  font-size: 320px; color: rgba(255,255,255,.025);
  line-height: 1; pointer-events: none;
}
.statement__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--container-px); }
.statement__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-style: italic; color: var(--cream);
  line-height: 1.45; font-weight: 300; margin-bottom: 36px;
}
.statement__attr {
  font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
}

/* ============================================
   HOME CTA
   ============================================ */
.home-cta { background: var(--off-white); padding: 130px 0; text-align: center; }
.home-cta h2 { margin-top: 16px; margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
.home-cta p  { max-width: 460px; margin: 0 auto 52px; }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: var(--burgundy-dark);
  padding: calc(var(--nav-height) + 110px) 0 110px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--cream); margin-top: 18px; }
.page-hero p  { color: rgba(245,237,227,.55); max-width: 520px; margin: 28px auto 0; }

/* ============================================
   AANBOD PAGE
   ============================================ */
.aanbod-block {
  padding: var(--section-pad) 0;
}
.aanbod-block:nth-child(odd)  { background: var(--off-white); }
.aanbod-block:nth-child(even) { background: var(--cream); }

.aanbod__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.aanbod__layout.flip { direction: rtl; }
.aanbod__layout.flip > * { direction: ltr; }

.aanbod__visual {
  aspect-ratio: 4/3;
  background: var(--burgundy-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.aanbod__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.88);
  transition: transform 0.8s var(--ease);
}
.aanbod__visual:hover img { transform: scale(1.05); }
.aanbod__visual-num {
  font-family: var(--font-heading);
  font-size: 12rem; font-weight: 300;
  color: rgba(245,237,227,.12); line-height: 1;
  position: absolute; bottom: -20px; right: 20px;
  z-index: 2;
}
.aanbod__visual-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,169,154,.15), transparent 70%);
  width: 300px; height: 300px;
  animation: orbFloat 8s ease-in-out infinite;
}

.aanbod__eyebrow { display: block; margin-bottom: 16px; }
.aanbod__content h2 { color: var(--burgundy); margin-bottom: 20px; }
.aanbod__content > p { margin-bottom: 36px; font-size: .95rem; }

.service-list { margin-bottom: 44px; }
.service-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.service-item::before {
  content: ''; display: block; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.service-item span { font-size: .9rem; color: var(--warm-black); font-weight: 300; }

/* ============================================
   OVER ONS PAGE
   ============================================ */
.over-story {
  background: var(--off-white); padding: var(--section-pad) 0;
}
.over-story__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.over-story__visual {
  aspect-ratio: 4/5;
  background: var(--burgundy-dark);
  position: relative; overflow: hidden;
}
.over-story__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.78) saturate(0.9);
  transition: transform 0.8s var(--ease);
}
.over-story__visual:hover img { transform: scale(1.03); }
.over-story__visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px 36px;
  background: linear-gradient(to top, rgba(36,8,8,.75) 0%, transparent 100%);
  z-index: 2;
}
.over-story__visual-year {
  font-size: .65rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 500; display: block; margin-bottom: 6px;
}
.over-story__visual-names {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-style: italic;
  color: rgba(245,237,227,.7);
}
.over-story__content .eyebrow { display: block; margin-bottom: 16px; }
.over-story__content h2 { color: var(--burgundy); margin-bottom: 28px; }
.over-story__content p  { margin-bottom: 20px; font-size: .95rem; }

/* Waarden */
.waarden { background: var(--burgundy); padding: var(--section-pad) 0; }
.waarden__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; background: rgba(255,255,255,.04);
  margin-top: 64px;
}
.waarde {
  background: var(--burgundy); padding: 64px 48px;
  border-right: 1px solid rgba(255,255,255,.04);
  text-align: center;
}
.waarde:last-child { border-right: none; }
.waarde__num {
  font-family: var(--font-heading); font-size: 4.5rem;
  font-weight: 300; color: rgba(255,255,255,.04);
  line-height: 1; margin-bottom: 24px;
}
.waarde h3 { color: var(--accent); font-size: 1.35rem; margin-bottom: 16px; }
.waarde p  { color: rgba(245,237,227,.5); font-size: .88rem; }

/* Team */
.team { background: var(--cream); padding: var(--section-pad) 0; }
.team__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; margin-top: 64px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.team-card { text-align: center; }
.team-card__avatar {
  width: 180px; height: 180px;
  border-radius: 50%; border: 1px solid var(--border);
  margin: 0 auto 28px;
  background: var(--burgundy-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-card__initial {
  font-family: var(--font-heading); font-size: 3.5rem;
  font-style: italic; color: rgba(245,237,227,.4);
}
.team-card__avatar-ring {
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(196,169,154,.4), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  transition: var(--t);
}
.team-card:hover .team-card__avatar-ring { opacity: 1; }
.team-card h4 { color: var(--burgundy); margin-bottom: 8px; font-size: 1.35rem; }
.team-card__role {
  font-size: .7rem; color: var(--accent);
  letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
}

/* Werkwijze */
.werkwijze { background: var(--off-white); padding: var(--section-pad) 0; }
.werkwijze__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  border-top: 1px solid var(--border);
}
.stap {
  padding: 44px 40px 44px 0;
  border-right: 1px solid var(--border);
}
.stap:last-child { border-right: none; }
.stap__num {
  font-size: .65rem; color: var(--accent);
  letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 20px;
}
.stap h4 { color: var(--burgundy); margin-bottom: 12px; font-size: 1.15rem; }
.stap p  { font-size: .88rem; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-filter {
  background: var(--off-white);
  padding: 44px 0 0;
  border-bottom: 1px solid var(--border);
}
.filter-buttons { display: flex; gap: 0; }
.filter-btn {
  padding: 14px 32px;
  font-family: var(--font-body); font-size: .68rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--text-muted); cursor: none;
  transition: var(--t);
}
.filter-btn:hover  { color: var(--burgundy); }
.filter-btn.active { color: var(--burgundy); border-bottom-color: var(--accent); }

.portfolio-grid {
  background: var(--off-white); padding: 60px 0 var(--section-pad);
}
.portfolio__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.p-item {
  position: relative; overflow: hidden;
  cursor: none; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px 40px;
  transition: var(--t);
}
.p-item:nth-child(6n+1) { background: var(--burgundy-dark); min-height: 520px; grid-row: span 2; }
.p-item:nth-child(6n+2) { background: var(--burgundy); }
.p-item:nth-child(6n+3) { background: var(--cream); }
.p-item:nth-child(6n+4) { background: var(--burgundy-mid); }
.p-item:nth-child(6n+5) { background: var(--off-white); border: 1px solid var(--border); }
.p-item:nth-child(6n+6) { background: var(--burgundy-dark); }

/* Light cards */
.p-item:nth-child(6n+3) .p-item__cat   { color: var(--accent); }
.p-item:nth-child(6n+3) .p-item__title { color: var(--burgundy); }
.p-item:nth-child(6n+5) .p-item__cat   { color: var(--accent); }
.p-item:nth-child(6n+5) .p-item__title { color: var(--burgundy); }

.p-item__bg-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-heading); font-size: 8rem; font-weight: 300;
  color: rgba(255,255,255,.04); line-height: 1;
  transition: var(--t);
}
.p-item:nth-child(6n+3) .p-item__bg-num,
.p-item:nth-child(6n+5) .p-item__bg-num { color: rgba(56,14,14,.04); }
.p-item:hover .p-item__bg-num { transform: scale(1.1); }

.p-item__cat {
  display: block; font-size: .6rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 10px;
}
.p-item__title {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--cream); font-weight: 400; line-height: 1.25;
  margin-bottom: 8px;
}
.p-item__services {
  font-size: .75rem; color: rgba(245,237,227,.35);
  font-style: italic;
}
.p-item:nth-child(6n+3) .p-item__services,
.p-item:nth-child(6n+5) .p-item__services { color: rgba(56,14,14,.35); }
.p-item__line {
  width: 0; height: 1px; background: var(--accent);
  transition: width .5s var(--ease); margin-top: 16px;
}
.p-item:hover .p-item__line { width: 40px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: var(--off-white); padding: var(--section-pad) 0; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 100px; align-items: start;
}
.contact__side .eyebrow { display: block; margin-bottom: 16px; }
.contact__side h2 { color: var(--burgundy); margin-bottom: 24px; }
.contact__side > p  { margin-bottom: 52px; font-size: .95rem; }
.contact__details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 52px; }
.contact__detail__label {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 4px;
}
.contact__detail__value {
  font-size: .95rem; color: var(--warm-black); font-weight: 300;
}
.contact__detail__value a { transition: color var(--t); }
.contact__detail__value a:hover { color: var(--burgundy); }
.contact__socials { display: flex; gap: 12px; }
.c-social {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border);
  padding: 10px 20px; transition: var(--t); cursor: none;
}
.c-social:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Form */
.contact__form-wrap {
  background: var(--cream); padding: 60px;
}
.form__title { font-family: var(--font-heading); font-size: 1.6rem; color: var(--burgundy); margin-bottom: 8px; }
.form__sub   { font-size: .85rem; color: var(--text-muted); margin-bottom: 44px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__field { margin-bottom: 28px; }
.form__field label {
  display: block; font-size: .64rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.form__field input, .form__field textarea, .form__field select {
  width: 100%; padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  font-family: var(--font-body); font-size: .9rem;
  font-weight: 300; color: var(--warm-black);
  outline: none; border-radius: 0;
  transition: border-color var(--t); -webkit-appearance: none;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus { border-color: var(--accent); }
.form__field textarea { height: 140px; resize: vertical; }

.form__btn {
  width: 100%; padding: 18px;
  background: var(--burgundy); color: var(--cream);
  font-family: var(--font-body); font-size: .7rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  border: none; cursor: none;
  transition: background var(--t), transform var(--t) var(--ease-back),
              box-shadow var(--t);
}
.form__btn:hover {
  background: var(--burgundy-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(56,14,14,.25);
}
.form__success {
  display: none; margin-top: 20px; padding: 20px;
  background: rgba(196,169,154,.1); border: 1px solid var(--accent);
  font-size: .88rem; text-align: center; color: var(--warm-black);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  :root { --container-px: 40px; --section-pad: 96px; }
  .diensten__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ai-section__inner, .aanbod__layout, .over-story__grid, .contact__grid {
    grid-template-columns: 1fr; gap: 60px;
  }
  .aanbod__layout.flip { direction: ltr; }
  .ai-visual { height: 360px; }
  .werkwijze__steps { grid-template-columns: repeat(2, 1fr); }
  .waarden__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .teaser-card:nth-child(1) { grid-column: span 2; min-height: 300px; }
}

@media (max-width: 900px) {
  :root { --container-px: 28px; --section-pad: 72px; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .p-item:nth-child(6n+1) { grid-row: auto; min-height: 300px; }
  .team__grid { grid-template-columns: 1fr; max-width: 340px; }
  /* Hero: één kolom op mobiel — video verbergen */
  .hero { grid-template-columns: 1fr; }
  .hero__video-wrap { display: none; }
  .hero__content {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 60px) var(--container-px) 80px;
    justify-content: center;
  }
  .hero__line { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }
  body { cursor: auto; }
  .cursor { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .diensten__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .p-item:nth-child(6n+1) { min-height: 260px; }
  .werkwijze__steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .teaser-grid { grid-template-columns: 1fr; }
  .teaser-card:nth-child(1) { grid-column: auto; }
  .contact__form-wrap { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --container-px: 20px; }
  .hero__title { font-size: 2.8rem; }
}
