/* ===== SLK. v2 — EARTHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Work+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --c-bone:       oklch(94% 0.012 75);
  --c-clay:       oklch(72% 0.10 55);
  --c-ochre:      oklch(75% 0.14 80);
  --c-rust:       oklch(54% 0.16 38);
  --c-aubergine:  oklch(32% 0.07 350);
  --c-indigo:     oklch(30% 0.08 250);
  --c-coal:       oklch(20% 0.015 60);
  --c-moss:       oklch(45% 0.07 130);

  --ink: var(--c-coal);
  --ink-soft: oklch(40% 0.02 60);
  --bg: var(--c-bone);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
}
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.05; mix-blend-mode:multiply;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1180px;
  padding: 16px 28px;
  background: var(--c-bone);
  border: 1px solid oklch(20% 0.015 60 / 0.14);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 6px 24px oklch(20% 0.015 60 / 0.08);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--c-coal);
}
.navbar__logo-sym {
  width: 32px; height: 32px;
  background: var(--c-rust);
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
}
.navbar__logo em { font-style: italic; font-weight: 400; color: var(--c-rust); }
.navbar__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-coal);
  transition: color 0.25s;
}
.navbar__links a:hover { color: var(--c-rust); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--c-coal);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--c-bone);
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg-blob {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 60vw;
  height: 70vh;
  background: var(--c-ochre);
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: 0.55;
}
.hero__bg-blob--2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40vw;
  height: 50vh;
  background: var(--c-rust);
  border-radius: 70% 30% 40% 60% / 55% 70% 30% 45%;
  z-index: 0;
  opacity: 0.18;
}
.hero__text {
  padding: 80px 96px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 2;
  order: 2;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-rust);
}
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--c-coal);
  font-variation-settings: "opsz" 144;
}
.hero__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-rust);
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.55;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 40px 40px;
  order: 1;
}
.hero__image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4/5;
}
.hero__image-back {
  position: absolute;
  inset: -20px -30px 30px 0;
  background: var(--c-aubergine);
  border-radius: 45% 55% 35% 65% / 60% 60% 40% 40%;
  z-index: 0;
}
.hero__image-container img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% center;
  border-radius: 50% 50% 48% 52% / 38% 38% 62% 62%;
}

/* ===== BUTTONS — unified ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--c-rust);
  color: var(--c-bone);
  border-color: var(--c-rust);
}
.btn--primary:hover {
  background: var(--c-coal);
  border-color: var(--c-coal);
}
.btn--secondary {
  background: var(--c-ochre);
  color: var(--c-coal);
  border-color: var(--c-ochre);
}
.btn--secondary:hover {
  background: var(--c-clay);
  border-color: var(--c-clay);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--c-bone);
}
.btn--on-dark.btn--primary { background: var(--c-bone); color: var(--c-coal); border-color: var(--c-bone); }
.btn--on-dark.btn--ghost { color: var(--c-bone); border-color: var(--c-bone); }
.btn--on-dark.btn--ghost:hover { background: var(--c-bone); color: var(--c-coal); }
.btn--lg { padding: 20px 38px; font-size: 1.08rem; }

/* ===== SECTION SHARED ===== */
.section { padding: 110px 48px; }
.section__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-rust);
  margin-bottom: 14px;
}
.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--c-coal);
}
.section__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-rust);
}

/* ===== DIENSTEN ===== */
.diensten {
  background: var(--c-bone);
  padding: 110px 48px;
  position: relative;
}
.diensten__intro {
  max-width: 1200px;
  margin: 0 auto 56px;
  text-align: left;
}
.diensten__strip {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 32px;
  overflow: hidden;
}
.dienst-col {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 360px;
  position: relative;
}
.dienst-col--ochre { background: var(--c-ochre); color: var(--c-coal); }
.dienst-col--coal { background: var(--c-coal); color: var(--c-bone); }
.dienst-col--aubergine { background: var(--c-aubergine); color: var(--c-bone); }
.dienst-stamp {
  width: 72px; height: 72px;
  border: 2px solid currentColor;
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  display: grid;
  place-items: center;
  opacity: 0.95;
  transform: rotate(-5deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dienst-col:hover .dienst-stamp {
  transform: rotate(5deg) scale(1.1);
}

.dienst-col h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.dienst-col p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.92;
}

/* ===== OVER MIJ ===== */
.over-mij {
  background: var(--c-coal);
  color: var(--c-bone);
  position: relative;
  overflow: hidden;
}
.over-mij::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: var(--c-aubergine);
  border-radius: 70% 30% 40% 60% / 55% 70% 30% 45%;
  opacity: 0.6;
  z-index: 0;
}
.over-mij__content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}
.over-mij__image {
  position: relative;
  aspect-ratio: 4/5;
}
.over-mij__image-back {
  position: absolute;
  inset: -20px -20px 30px -10px;
  background: var(--c-rust);
  border-radius: 38% 62% 70% 30% / 30% 55% 45% 70%;
  z-index: 0;
}
.over-mij__image-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23e8d8c4' stroke-width='2'%3E%3Cpath d='M0,15 L60,15'/%3E%3Cpath d='M0,45 L60,45'/%3E%3Cpath d='M10,15 L10,45 M20,15 L20,45 M30,15 L30,45 M40,15 L40,45 M50,15 L50,45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 50px 50px;
  opacity: 0.18;
  border-radius: 50% 50% 48% 52% / 38% 38% 62% 62%;
}
.over-mij__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 48% 52% / 38% 38% 62% 62%;
}
.over-mij__text .section__label { color: var(--c-ochre); }
.over-mij__text .section__heading { color: var(--c-bone); }
.over-mij__text .section__heading em { color: var(--c-ochre); }
.over-mij__text p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: oklch(94% 0.012 75 / 0.85);
}
.over-mij__text p:first-of-type {
  font-size: 1.18rem;
  color: var(--c-bone);
}

/* ===== WERKWIJZE ===== */
.werkwijze {
  background: var(--c-bone);
  padding: 110px 48px;
}
.werkwijze__head {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.werkwijze__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.werkwijze-col {
  padding: 36px 28px;
  border-radius: 26px 18px 26px 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.werkwijze-col:hover { transform: translateY(-4px); }
.werkwijze-col--1 { background: var(--c-clay); color: var(--c-coal); }
.werkwijze-col--2 { background: var(--c-moss); color: var(--c-bone); }
.werkwijze-col--3 { background: var(--c-indigo); color: var(--c-bone); }
.werkwijze-col--4 { background: var(--c-rust); color: var(--c-bone); }
.werkwijze-col__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1;
  opacity: 0.6;
}
.werkwijze-col__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.werkwijze-col__text {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.92;
}

/* ===== REFERENTIES ===== */
.referenties {
  background: var(--c-aubergine);
  color: var(--c-bone);
  position: relative;
  overflow: hidden;
}
.referenties::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: var(--c-indigo);
  border-radius: 50% 50% 30% 70% / 70% 40% 60% 30%;
  opacity: 0.6;
}
.referenties__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.referenties__intro .section__label { color: var(--c-ochre); }
.referenties__intro .section__heading { color: var(--c-bone); }
.referenties__intro .section__heading em { color: var(--c-ochre); }
.referenties__description {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.7;
}
.referenties__featured-card {
  background: var(--c-clay);
  color: var(--c-coal);
  padding: 56px 36px 36px;
  border-radius: 36px 26px 32px 22px;
  position: relative;
}
.referenties__featured-card::before {
  content: '';
  position: absolute;
  top: -28px; left: 32px;
  width: 72px; height: 72px;
  background: var(--c-ochre);
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
}
.referenties__featured-card > * { position: relative; z-index: 1; }
.referenties__featured-quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.4;
  opacity: 0.55;
  margin-bottom: 16px;
}
.referenties__featured-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.referenties__featured-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}
.referenties__featured-role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 2px;
}
.referenties__ticker {
  height: 480px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.referenties__ticker-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: tickerScroll 28s linear infinite;
}
@keyframes tickerScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.referenties__ticker:hover .referenties__ticker-track { animation-play-state: paused; }
.referenties__ticker-card {
  background: var(--c-bone);
  color: var(--c-coal);
  border-radius: 22px 16px 22px 14px;
  padding: 22px;
  flex-shrink: 0;
}
.referenties__ticker-card p:nth-child(1) {
  font-size: 0.93rem;
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 400;
}
.referenties__ticker-card p:nth-child(2) {
  font-size: 0.88rem;
  font-weight: 600;
}
.referenties__ticker-card p:nth-child(3) {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--c-bone);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: var(--c-ochre);
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.3;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact__info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.95rem;
}
.contact__detail-icon {
  width: 40px; height: 40px;
  background: var(--c-rust);
  color: var(--c-bone);
  display: grid;
  place-items: center;
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form input,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 16px 22px;
  border: 2px solid var(--c-coal);
  background: var(--c-bone);
  color: var(--c-coal);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--c-rust);
  box-shadow: 0 0 0 3px oklch(54% 0.16 38 / 0.18);
}
.contact__form textarea { min-height: 140px; resize: vertical; border-radius: 30px; }
.contact__form button {
  align-self: flex-start;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-coal);
  color: var(--c-bone);
  padding: 64px 48px 28px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid oklch(94% 0.012 75 / 0.12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.footer__logo em { font-style: italic; font-weight: 400; color: var(--c-ochre); }
.footer__logo-sym {
  width: 32px; height: 32px;
  background: var(--c-rust);
  border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
}
.footer__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.65;
  max-width: 320px;
}
.footer__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-ochre);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.92rem;
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}
.footer__links a:hover { opacity: 1; color: var(--c-ochre); }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */
.reveal-element { opacity: 0; transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-element.visible { opacity: 1; transform: translateY(0) scale(1); }

.fade-up { transform: translateY(40px); }
.fade-in { transform: translateY(0); }
.zoom-in { transform: scale(0.92); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* On Load Animations */
@keyframes navSlideDown {
  from { transform: translateX(-50%) translateY(-100%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.navbar { animation: navSlideDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@keyframes blobPulse {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(2%, -2%); }
  100% { transform: scale(1) translate(0, 0); }
}
.blob-anim { animation: blobPulse 12s ease-in-out infinite; }
.blob-anim--reverse { animation: blobPulse 14s ease-in-out infinite reverse; }

/* Hero Reveal */
.hero__text-reveal > * {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.hero__text-reveal > *:nth-child(1) { animation-delay: 0.2s; }
.hero__text-reveal > *:nth-child(2) { animation-delay: 0.35s; }
.hero__text-reveal > *:nth-child(3) { animation-delay: 0.5s; }
.hero__text-reveal > *:nth-child(4) { animation-delay: 0.65s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__image-reveal {
  opacity: 0;
  animation: heroZoomIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}
@keyframes heroZoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero__text { padding: 40px 32px; }
  .hero__image-wrapper { padding: 20px 32px 60px; }
  .diensten__strip { grid-template-columns: 1fr; }
  .over-mij__content { grid-template-columns: 1fr; gap: 48px; }
  .werkwijze__grid { grid-template-columns: repeat(2, 1fr); }
  .referenties__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .navbar { padding: 14px 20px; }
  .navbar__links {
    position: fixed; top: 0; right: -100%;
    width: 240px; height: 100vh;
    background: var(--c-bone);
    flex-direction: column; justify-content: center;
    gap: 20px; transition: right 0.3s; padding: 20px;
    border-radius: 0;
  }
  .navbar__links.active { right: 0; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 70px 24px; }
  .diensten, .werkwijze, .contact { padding: 70px 24px; }
  .werkwijze__grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 20px; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  .cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    background: var(--c-rust);
    border-radius: 62% 38% 55% 45% / 50% 60% 40% 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: multiply;
    opacity: 0.4;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-radius 0.3s ease, opacity 0.3s ease;
    will-change: transform;
  }
  
  .cursor-follower.hover-active {
    width: 64px; height: 64px;
    background: var(--c-ochre);
    border-radius: 50%;
    opacity: 0.7;
    mix-blend-mode: normal;
  }
}
