/* ═══════════════════════════════════════
   KANTOOR KAMELEON — v3
   ═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --green:       hsl(149, 60%, 52%);
  --green-dk:    hsl(149, 55%, 36%);
  --green-lt:    hsl(149, 60%, 95%);
  --green-glow:  hsla(149, 60%, 46%, 0.25);
  --ink:         #080B08;
  --ink-soft:    #2A2E2A;
  --cream:       #F7F3EC;
  --cream-dk:    #EDE9E0;
  --white:       #FFFFFF;
  --muted:       #6B7066;
  --hero-bg:     hsl(150, 58%, 7%);
  --rule:        rgba(0,0,0,0.09);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --max:         1160px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--serif); font-weight: 900; line-height: 1.06; letter-spacing: -0.025em; }
.display-lg  { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.display-xl  { font-size: clamp(3rem, 7vw, 6.2rem); }

.overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

p { line-height: 1.74; color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.2s, opacity 0.2s;
  text-decoration: none;
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.section-over .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(0,0,0,0.2); }
.section-over .btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); }
.sr.in { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }
.sr-d4 { transition-delay: 0.32s; }
.sr-d5 { transition-delay: 0.40s; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-top: 12px; }
.section-header h2 em { font-style: italic; color: var(--green); }
.section-intro { max-width: 560px; margin: 20px auto 0; font-size: 1.05rem; }

/* ══════════════════════════════
   CUSTOM CURSOR
══════════════════════════════ */
.cursor, .cursor-dot { display: none; }

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--green);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--ease), opacity 0.3s, width 0.2s var(--ease), height 0.2s var(--ease);
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
  }
  .cursor-dot {
    display: block;
    position: fixed;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.06s;
  }
  .cursor.hover { width: 54px; height: 54px; background: var(--green-glow); border-color: transparent; }
  body:has(#hero:hover) .cursor { border-color: rgba(255,255,255,0.4); }
}

/* ══════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 300;
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 13px 0;
  background: rgba(247,243,236,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 6px 10px;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { padding: 10px 22px; font-size: 0.82rem; }
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 198;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 120px 24px 60px;
  gap: 0;
}
.mob-menu.open { display: flex; }
.mob-menu > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 340px;
  list-style: none;
}
.mob-menu > ul > li { width: 100%; text-align: center; }
.mob-link {
  display: block;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 0;
  text-align: center;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--green); }
.mob-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--green);
  color: #fff !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 14px 36px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.mob-cta:hover { background: hsl(149,55%,36%); color: #fff !important; transform: translateY(-1px); }

/* Mobile sub-links */
.mob-link-parent {
  display: block;
  font-size: 0.7rem !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35) !important;
  padding: 18px 0 4px !important;
  cursor: default;
}
.mob-sub-list { display: flex; flex-direction: column; align-items: center; gap: 0; margin: 0 0 4px; }
.mob-sub-link {
  font-family: var(--sans) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  opacity: 0.72;
  padding: 7px 0;
  transition: opacity 0.2s, color 0.2s;
}
.mob-sub-link:hover { opacity: 1; color: var(--green) !important; }

/* ── Mega menu ── */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-chevron {
  width: 13px; height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav-item-dropdown:hover .nav-dropdown-chevron { transform: rotate(180deg); opacity: 1; }
.nav-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 0 0 1px var(--border);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0s linear 0.22s;
  pointer-events: none;
  z-index: 200;
}
.nav-mega::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: -20px;
  height: 20px;
}
.nav-item-dropdown:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
  pointer-events: all;
}
/* Diensten: verticale lijst, zelfde breedte als projecten */
.nav-mega-diensten { min-width: 300px; }
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
/* Projecten: vertikale lijst */
.nav-mega-projecten { min-width: 300px; left: auto; right: 0; transform: none; }
.nav-mega-projecten::before { left: auto; right: 0; }
.nav-item-dropdown:hover .nav-mega-projecten { transform: none; }
/* JS-managed open state (adds 380ms close delay for reliable mouse movement) */
.nav-item-dropdown.nav-mega-open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
  pointer-events: all;
}
.nav-item-dropdown.nav-mega-open .nav-dropdown-chevron { transform: rotate(180deg); opacity: 1; }
.nav-item-dropdown.nav-mega-open .nav-mega-projecten { transform: none; }
.nav-mega-list { display: flex; flex-direction: column; gap: 3px; }
.nav-mega-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.nav-mega-footer a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green) !important;
  opacity: 1 !important;
}
.nav-mega-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 11px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s;
  opacity: 1 !important;
}
.nav-mega-item:hover { background: var(--cream-dk); }
.nav-mega-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.nav-mega-item-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  background: var(--hero-bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 88px;
  position: relative;
  overflow: hidden;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb-a {
  width: 820px; height: 680px;
  top: -200px; right: -180px;
  background: radial-gradient(ellipse, hsla(149,65%,42%,0.3) 0%, transparent 65%);
}
.hero-orb-b {
  width: 560px; height: 480px;
  bottom: -80px; left: -80px;
  background: radial-gradient(ellipse, hsla(149,55%,28%,0.22) 0%, transparent 65%);
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 68px 68px;
}

.hero-inner { position: relative; z-index: 2; padding-top: 160px; }

/* Rotating badge */
.hero-badge {
  position: absolute;
  top: 100px; right: 40px;
  width: 120px; height: 120px;
  color: rgba(255,255,255,0.32);
  animation: rotateBadge 18s linear infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }
.badge-ring { width: 100%; height: 100%; }
.badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  animation: rotateBadge 18s linear infinite reverse;
}

/* Location label */
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 hsla(149,60%,52%,0.4); }
  50%       { box-shadow: 0 0 0 8px hsla(149,60%,52%,0); }
}
.hero-label span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Headline */
.hero-headline {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-line { display: block; }
.hero-line-em em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 580px;
  margin-bottom: 44px;
}
.br-lg { display: none; }
@media (min-width: 860px) { .br-lg { display: block; } }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-clients { display: flex; flex-direction: column; gap: 12px; }
.hero-clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.hero-client-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
.client-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.client-logo:hover { opacity: 1; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ticker {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
}
.ticker-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.ticker-link:hover { color: var(--green); }
.ticker-dot {
  color: var(--green) !important;
  padding: 0 4px !important;
  font-size: 0.6rem !important;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   DIENSTEN
══════════════════════════════ */
.section-diensten {
  background: var(--cream);
  padding: 120px 0;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dienst-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}
.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}

/* Image / visual header */
.dienst-img-wrap {
  aspect-ratio: 3/2;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.dienst-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, hsla(149,65%,42%,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.dienst-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.dienst-img-icon {
  color: rgba(255,255,255,0.18);
  position: relative;
  z-index: 1;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.dienst-card:hover .dienst-img-icon {
  color: rgba(255,255,255,0.32);
  transform: scale(1.08);
}

/* Card body */
.dienst-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dienst-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}
.dienst-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.dienst-body p {
  font-size: 0.91rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.dienst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.dienst-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--rule);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
  text-decoration: none;
  transition: gap 0.2s var(--ease);
}
/* Stretched link: makes the entire card clickable */
.dienst-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.dienst-link:hover { gap: 10px; }

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.section-stats {
  background: #071c12;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-unit {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-num-wrap {
  display: block;
  line-height: 1;
}
.stat-num-wrap--row {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}
.stat-row-label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.stat-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* ══════════════════════════════
   OVER ONS
══════════════════════════════ */
.section-over {
  background: var(--cream-dk);
  padding: 120px 0;
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.over-content h2 em {
  font-style: italic;
  color: var(--green);
}
.over-content .lead { margin: 24px 0 16px; }
.over-content p { margin-bottom: 32px; }
.over-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.value-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-card:first-child {
  grid-column: 1 / -1;
}
.team-grid--duo .team-card:first-child {
  grid-column: auto;
}
.team-grid--stack {
  grid-template-columns: 1fr 1fr;
  max-width: 540px;
  margin: 0 auto;
}
.team-grid--stack .team-card:first-child {
  grid-column: auto;
}
.team-grid--stack .team-card .team-photo-wrap {
  aspect-ratio: unset !important;
  height: 240px;
  width: 100%;
}
.team-grid--stack .team-card:nth-child(1) .team-photo-wrap img {
  object-position: center 15%;
}
.team-grid--stack .team-card:nth-child(2) .team-photo-wrap {
  background: var(--cream-dk);
}
.team-grid--stack .team-card:nth-child(2) .team-photo-wrap img {
  object-fit: contain;
  object-position: center bottom;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.team-photo-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-card:first-child .team-photo-wrap { aspect-ratio: 16/9; }
.team-grid--duo .team-card:first-child .team-photo-wrap { aspect-ratio: 4/3; }
.team-photo-placeholder {
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team-info strong { font-size: 1rem; font-weight: 700; color: var(--ink); }
.team-info span { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════════════
   PORTFOLIO
══════════════════════════════ */
.section-portfolio {
  background: var(--cream);
  padding: 120px 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.porto-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.porto-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.porto-card--large {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
}
.porto-card--large .porto-img-wrap {
  width: 55%;
  aspect-ratio: auto;
  flex-shrink: 0;
  min-height: 380px;
  max-height: 440px;
}
.porto-card--large .porto-img-wrap img {
  object-position: left center;
}
.porto-card--large .porto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}
.porto-card--large .porto-info h3 { font-size: 1.5rem; }
.porto-card--large .porto-info p { font-size: 0.95rem; margin-top: 8px; }

.porto-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
}
.porto-img-wrap--dark { background: var(--ink); }
.porto-img-wrap img,
.porto-img-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.porto-card:hover .porto-img-wrap img,
.porto-card:hover .porto-img-wrap video { transform: scale(1.03); }
.porto-info { padding: 24px 28px; }
.porto-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.porto-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.porto-info p { font-size: 0.9rem; }
.porto-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}
.porto-card { position: relative; }
.porto-card-href {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ══════════════════════════════
   PROJECTEN PAGES
══════════════════════════════ */
.section-projecten-hero {
  background: var(--hero-bg);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.section-projecten-hero .hero-orb-a,
.section-projecten-hero .hero-orb-b { pointer-events: none; }
.projecten-hero-inner { position: relative; z-index: 2; }
.projecten-hero-inner h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 780px;
}
.projecten-hero-inner h1 em { font-style: italic; color: var(--green); }
.projecten-hero-inner p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.52);
  max-width: 560px;
}

.section-projecten-grid {
  background: var(--cream);
  padding: 96px 0;
}
.projecten-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.1); }
.project-card-href {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.project-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dk);
}
.project-card-img--dark { background: var(--ink); }
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-card-img img { transform: scale(1.04); }
.project-card-body { padding: 22px 24px 26px; }
.project-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.project-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.project-card-body p { font-size: 0.87rem; line-height: 1.6; margin-bottom: 14px; }
.project-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}
.project-card-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  opacity: 0.75;
}
.project-card--no-link { cursor: default; }
.project-card--no-link:hover { transform: none; box-shadow: none; }

/* Project detail page */
.section-project-detail {
  background: var(--cream);
  padding: 80px 0;
}
.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.project-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.project-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.project-gallery-item--full { grid-column: 1 / -1; }
.project-gallery-item img,
.project-gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.project-gallery-item img:hover { opacity: 0.92; }
.project-gallery-caption {
  padding: 10px 16px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 100px;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 56px; height: 56px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-img-wrap {
  max-width: min(90vw, 1100px);
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightboxImg {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  transition: opacity 0.18s;
}
.lightbox-caption {
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}
.lightbox-counter {
  margin-top: 6px;
  color: rgba(255,255,255,0.32);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
}
/* ═══ OVER ONS PAGINA ═══ */
.over-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--green);
  background: var(--cream-dk);
  border-radius: 0 10px 10px 0;
}
.over-quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--ink-soft);
}

.section-over-team {
  padding: 120px 0;
  background: var(--white);
}
.over-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.over-team-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.over-team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--cream-dk);
}
.over-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.over-team-photo--linda img {
  object-fit: contain;
  object-position: center bottom;
}
.over-team-body {
  padding: 32px 32px 36px;
}
.over-team-body .svc-badge { background: rgba(74,163,90,0.08); border-color: rgba(74,163,90,0.22); }
.over-team-body .svc-badge span { color: var(--green); }
.over-team-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.over-team-role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 18px !important;
}
.over-team-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.over-team-body p:last-child { margin-bottom: 0; }

.section-aanpak {
  padding: 120px 0;
  background: var(--cream-dk);
}
.aanpak-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.aanpak-step {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.aanpak-step-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.18;
}
.aanpak-step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.aanpak-step-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.section-voor-wie {
  padding: 120px 0;
  background: var(--white);
}

@media (max-width: 768px) {
  .over-team-grid { grid-template-columns: 1fr; gap: 32px; }
  .over-team-photo { height: 260px; }
  .over-team-body { padding: 24px; }
  .aanpak-steps { grid-template-columns: 1fr; }
}

/* ═══ END OVER ONS PAGINA ═══ */

@media (max-width: 768px) {
  .lightbox { padding: 60px 16px 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .project-detail-gallery { grid-template-columns: 1fr; }
}
.project-meta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.project-meta-content h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.project-meta-content h2 em { font-style: italic; color: var(--green); }
.project-meta-content p { margin-bottom: 14px; font-size: 0.95rem; }
.project-deliverables {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
}
.project-deliverables h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.project-deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-deliverable {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.project-deliverable-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .projecten-all-grid { grid-template-columns: repeat(2, 1fr); }
  .project-meta-section { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .projecten-all-grid { grid-template-columns: 1fr; }
  .project-detail-gallery { grid-template-columns: 1fr; }
  .project-img-wrap--large { aspect-ratio: 16/9; }
}

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.section-process {
  background: var(--ink);
  padding: 120px 0;
}
.section-process .overline { color: rgba(255,255,255,0.35); }
.section-process h2 { color: #fff; }
.section-process .section-intro { color: rgba(255,255,255,0.45); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 32px 28px;
  position: relative;
}
.process-connector {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  opacity: 1;
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.88rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.42);
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.section-faq {
  background: var(--cream);
  padding: 120px 0;
}
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.28s var(--ease);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px 22px;
}
.faq-a p { font-size: 0.93rem; }
.faq-a[hidden] { display: none; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.section-contact {
  background: var(--hero-bg);
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}
.contact-link:hover { color: #fff; }
.contact-location { cursor: default; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); background: #fff; }
.form-group textarea { min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-crop { overflow: hidden; height: 68px; width: 180px; display: block; margin-bottom: 16px; border-radius: 8px; }
.footer-logo { height: 192px; width: auto; margin-top: -78px; margin-left: -12px; max-width: none; display: block; }
.footer-bottom-logo { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.35; }
.footer-bottom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 280px; }
.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-nav span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }

/* ══════════════════════════════
   SERVICE PAGES
══════════════════════════════ */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--hero-bg);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}
.breadcrumb-inner a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { opacity: 0.4; }

.svc-hero {
  background: var(--hero-bg);
  padding: 28px 0 100px;
  position: relative;
  overflow: hidden;
}
.svc-hero .hero-orb-a,
.svc-hero .hero-orb-b { pointer-events: none; }
.svc-hero-inner { position: relative; z-index: 2; }
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 32px;
}
.svc-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.svc-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.svc-hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 780px;
}
.svc-hero h1 em { font-style: italic; color: var(--green); }
.svc-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.52);
  max-width: 580px;
  margin-bottom: 44px;
}
.svc-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.svc-intro {
  background: var(--cream);
  padding: 96px 0;
}
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-intro-content h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.svc-intro-content h2 em { font-style: italic; color: var(--green); }
.svc-intro-content p { margin-bottom: 16px; }
.svc-intro-content p:last-child { margin-bottom: 0; }
.svc-intro-visual {
  background: var(--hero-bg);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svc-intro-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.32) 100%);
  z-index: 1;
}
.svc-intro-icon {
  color: rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}

.svc-wat {
  background: var(--cream-dk);
  padding: 96px 0;
}
.svc-wat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.svc-feature {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
}
.svc-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-lt);
  color: var(--green-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.svc-feature p { font-size: 0.88rem; line-height: 1.65; }

.svc-waarom {
  background: var(--cream);
  padding: 96px 0;
}
.svc-waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.svc-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-check-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}
.svc-check-text { font-size: 0.93rem; line-height: 1.6; color: var(--ink-soft); font-weight: 500; }
.svc-waarom-quote {
  background: var(--hero-bg);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.svc-waarom-quote::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, hsla(149,65%,42%,0.2) 0%, transparent 65%);
}
.svc-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.svc-quote-author {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  position: relative; z-index: 1;
}

.svc-referenties {
  background: var(--cream-dk);
  padding: 96px 0;
}
.svc-ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.svc-ref-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-ref-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.svc-ref-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.svc-ref-card p { font-size: 0.88rem; line-height: 1.65; }

.svc-faq {
  background: var(--cream);
  padding: 96px 0;
}

.svc-cta {
  background: var(--hero-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, hsla(149,65%,42%,0.22) 0%, transparent 65%);
}
.svc-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.svc-cta h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.svc-cta p {
  color: rgba(255,255,255,0.52);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.svc-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-label { display: none; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-wat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-intro-grid, .svc-waarom-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-ref-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .over-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
  .nav-logo-img { height: 36px; }
  .hero-badge { top: 80px; right: 20px; width: 88px; height: 88px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .svc-wat-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .porto-card--large { grid-column: auto; flex-direction: column; }
  .porto-card--large .porto-img-wrap { width: 100%; min-height: auto; aspect-ratio: 16/9; }
  .porto-card--large .porto-info { padding: 24px 28px; }
  .process-steps { flex-direction: column; gap: 0; }
  .process-connector { width: 1px; height: 32px; margin: 0 auto; align-self: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:first-child { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-diensten, .section-over, .section-portfolio,
  .section-process, .section-faq, .section-contact { padding: 80px 0; }
  .contact-form { padding: 28px 22px; }
}

/* ── 404 ── */
.page-404 {
  padding: 140px 0 100px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.page-404-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-404-code {
  display: block;
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}
.page-404-content p {
  margin-bottom: 12px;
  max-width: 480px;
}
.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.page-404-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.page-404-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .page-404-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .page-404-img {
    aspect-ratio: 16/9;
    order: -1;
  }
  .page-404-code { font-size: 4rem; }
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  min-width: 260px;
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.cookie-banner p a { color: var(--green); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { font-size: 0.83rem; padding: 10px 20px; }
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ── Form consent checkboxes ── */
.form-consent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-check a { color: var(--green); text-decoration: underline; }
