/* ═══════════════════════════════════════════
   A12 OFFICE SUPPORT — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

:root {
  --ink:         #1c1b2e;
  --ink-soft:    #2e2d48;
  --gold:        #c8963e;
  --gold-light:  #e8b96a;
  --peach:       #f0956a;
  --peach-mid:   #f4b28a;
  --peach-light: #fdd5b8;
  --peach-pale:  #fff4ee;
  --sand:        #f7f1e8;
  --sand-dark:   #ede5d8;
  --cream:       #faf7f2;
  --muted:       #5a586a;
  --white:       #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── UTILITY ──────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
@media (max-width: 960px) { .container { padding: 0 2rem; } }

/* ─── STICKY WHATSAPP CTA ─────────────── */
.sticky-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.sticky-cta-bubble {
  background: var(--white);
  border-radius: 16px 16px 4px 16px;
  padding: 0.85rem 1.2rem;
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-width: 220px; line-height: 1.4;
  animation: bubblePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.5s both;
  border: 1.5px solid rgba(240,149,106,0.2);
}
.sticky-cta-bubble strong { color: var(--peach); }
@keyframes bubblePop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.sticky-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25D366; color: var(--white);
  padding: 0.9rem 1.6rem; border-radius: 60px;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all 0.25s;
  animation: bubblePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.8s both;
}
.sticky-wa-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37,211,102,0.55);
}
.sticky-wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─── NAV ──────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240,149,106,0.18);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
}
.nav-logo-img {
  height: 36px; width: auto; object-fit: contain;
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  opacity: 0.55; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--peach); }

/* Diensten dropdown */
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 540px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(240,149,106,0.12);
  padding: 0.75rem;
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem;
}
.dropdown-column {
  flex: 1 1 50%;
  min-width: 0;
}
.dropdown-column + .dropdown-column {
  border-left: 1px solid rgba(240,149,106,0.12);
  padding-left: 0.5rem;
}
.dropdown-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peach);
  padding: 0.5rem 0.85rem 0.3rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Invisible bridge to prevent gap hover loss */
.nav-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}
.dropdown-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem !important; font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--ink) !important;
  opacity: 1 !important;
  text-decoration: none;
  transition: background 0.15s;
}
.dropdown-item:hover {
  background: var(--sand);
  color: var(--peach) !important;
}
.dropdown-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--peach);
}
.dropdown-icon svg { width: 100%; height: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--peach), var(--gold));
  color: var(--white); border: none;
  padding: 0.7rem 1.6rem; border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(240,149,106,0.35);
  transition: all 0.25s;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,149,106,0.5);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none; cursor: pointer; background: none; border: none;
  width: 32px; height: 32px; position: relative;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  position: absolute; left: 5px; transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 8px; }
.nav-hamburger span:nth-child(2) { top: 15px; }
.nav-hamburger span:nth-child(3) { top: 22px; }

/* ─── BUTTONS ──────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--ink); color: var(--white);
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(28,27,46,0.18);
}
.btn-primary:hover {
  background: var(--peach); transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(240,149,106,0.4);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; padding: 0.5rem 0;
  border-bottom: 1.5px dashed rgba(122,120,136,0.4);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--peach); border-color: var(--peach); }
.btn-meer-info {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--peach-pale);
  color: var(--peach); border: 1.5px solid rgba(240,149,106,0.3);
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; width: fit-content;
  transition: all 0.22s;
}
.btn-meer-info:hover {
  background: var(--peach); color: var(--white);
  border-color: var(--peach); transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(240,149,106,0.35);
}
.btn-meer-info svg { width: 13px; height: 13px; transition: transform 0.22s; }
.btn-meer-info:hover svg { transform: translateX(3px); }

/* ─── SECTION SHARED ───────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peach); font-weight: 700; margin-bottom: 0.8rem;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--peach), var(--gold));
  border-radius: 2px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--ink); line-height: 1.1;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
}

/* ─── HERO ─────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-blob {
  position: absolute; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  pointer-events: none;
}
.hero-blob-1 {
  width: 700px; height: 700px; top: -150px; right: -120px;
  background: radial-gradient(circle, rgba(240,149,106,0.14) 0%, transparent 65%);
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 450px; height: 450px; bottom: 20px; left: -100px;
  background: radial-gradient(circle, rgba(200,150,62,0.09) 0%, transparent 65%);
  animation: blobFloat 12s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px,-18px) scale(1.04); }
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 5rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--peach);
  background: var(--peach-pale); padding: 0.45rem 1.1rem;
  border-radius: 50px; width: fit-content;
  border: 1.5px solid rgba(240,149,106,0.25);
  margin-bottom: 2rem;
}
.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px; background: var(--peach);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 rgba(240,149,106,0.5); }
  50% { opacity:0.6; transform:scale(0.85); box-shadow: 0 0 0 5px rgba(240,149,106,0); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
  font-weight: 300; line-height: 1.01; color: var(--ink);
  margin-bottom: 2rem;
}
.hero-title .line-accent {
  font-style: italic; color: var(--peach); display: block;
}
.hero-title .swoosh { position: relative; display: inline-block; }
.hero-title .swoosh svg {
  position: absolute; bottom: -6px; left: 0; width: 100%; height: 12px;
  overflow: visible;
}

.hero-sub {
  font-size: 1.02rem; font-weight: 300; line-height: 1.85;
  color: var(--muted); max-width: 450px; margin-bottom: 3rem;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-stats {
  margin-top: 4rem; display: flex; gap: 0;
  border: 1.5px solid rgba(240,149,106,0.2);
  border-radius: 18px; overflow: hidden;
  width: fit-content; background: var(--white);
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
}
.stat-item {
  padding: 1.2rem 2rem; text-align: center;
  border-right: 1.5px solid rgba(240,149,106,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 400; color: var(--peach); line-height: 1;
}
.stat-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.3rem;
}

/* Hero right */
.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--ink-soft) 0%, var(--ink) 60%, #2a1a10 100%);
}
.hero-right-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.hero-right-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 35% 45%, rgba(240,149,106,0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(200,150,62,0.12) 0%, transparent 40%);
}
.hero-photo-frame {
  position: relative; z-index: 2;
  width: 68%; aspect-ratio: 3/4;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  border: 2.5px solid rgba(240,149,106,0.25);
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), 0 0 0 14px rgba(240,149,106,0.05);
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.floating-card {
  position: absolute; z-index: 4; background: var(--white);
  border-radius: 16px; padding: 0.9rem 1.2rem;
  box-shadow: 0 10px 36px rgba(0,0,0,0.16);
  display: flex; align-items: center; gap: 0.75rem;
  border: 1.5px solid rgba(240,149,106,0.12);
}
.floating-card.card-left {
  left: 1.5rem; bottom: 28%;
  animation: floatY 4s ease-in-out infinite;
}
.floating-card.card-right {
  right: 1.5rem; top: 28%;
  animation: floatY 5s ease-in-out infinite 1.2s;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.fcard-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--peach-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fcard-icon svg { width: 18px; height: 18px; color: var(--peach); }
.fcard-text strong { font-size: 0.8rem; font-weight: 700; color: var(--ink); display: block; }
.fcard-text span { font-size: 0.68rem; color: var(--muted); }

/* ─── MARQUEE ──────────────────────────── */
.marquee-band {
  background: var(--ink); overflow: hidden; padding: 0.85rem 0;
  border-top: 2px solid var(--peach);
  border-bottom: 2px solid var(--peach);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0 2.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.marquee-item svg { width: 14px; height: 14px; color: var(--peach); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── LOGO CAROUSEL (CLIENTS) ──────────── */
#klanten {
  padding: 5rem 4rem;
  background: var(--sand);
  text-align: center;
  overflow: hidden;
}
#klanten .section-eyebrow { justify-content: center; margin-bottom: 0.5rem; }
#klanten .section-title { margin-bottom: 3rem; text-align: center; }

.logo-carousel-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logo-carousel-track {
  display: flex;
  animation: logoScroll 50s linear infinite;
  width: max-content;
}
.logo-carousel-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 2.8rem;
  height: 56px;
  color: var(--ink);
  opacity: 0.45;
  transition: all 0.4s ease;
}
.logo-item:hover {
  opacity: 0.85;
  color: var(--ink);
}
.logo-item svg {
  height: 44px;
  width: auto;
  max-width: 200px;
}
.logo-item .logo-text-fallback {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: currentColor;
  white-space: nowrap;
}

/* ─── INTRO ────────────────────────────── */
#intro {
  padding: 8rem 4rem;
  background: linear-gradient(160deg, var(--peach-pale) 0%, #fff8f2 60%, var(--sand) 100%);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 6rem;
  align-items: center; position: relative; overflow: hidden;
}
.intro-deco-circle {
  position: absolute; top: -100px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 40px solid rgba(240,149,106,0.07);
  pointer-events: none;
}
.intro-deco-circle-2 {
  position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 30px solid rgba(200,150,62,0.06);
  pointer-events: none;
}
.intro-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; font-weight: 300; line-height: 0.55;
  color: var(--peach); opacity: 0.35; margin-bottom: -0.5rem;
}
.intro-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.18;
  position: relative; z-index: 1;
}
.intro-label .warm-word {
  font-style: normal; font-weight: 600;
  background: linear-gradient(135deg, var(--peach), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-text {
  font-size: 1.04rem; font-weight: 300; line-height: 1.9;
  color: #4e4c60; position: relative; z-index: 1;
}
.intro-text strong { color: var(--ink); font-weight: 600; }
.intro-pills {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem;
}
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1.5px solid rgba(240,149,106,0.3);
  color: var(--ink); font-size: 0.75rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 50px; letter-spacing: 0.03em;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--peach); background: var(--peach-pale); }
.pill svg { width: 13px; height: 13px; color: var(--peach); flex-shrink: 0; }

/* ─── DIENSTEN ─────────────────────────── */
#diensten {
  padding: 8rem 4rem;
  background: var(--sand);
}
.diensten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.dienst-card {
  background: var(--white);
  border-radius: 22px; padding: 2.4rem;
  border: 1.5px solid rgba(240,149,106,0.1);
  transition: all 0.35s cubic-bezier(0.34,1.3,0.64,1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.dienst-card-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease; border-radius: 22px 22px 0 0;
}
.dienst-card:hover .dienst-card-glow { transform: scaleX(1); }
.dienst-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240,149,106,0.25);
  box-shadow: 0 24px 64px rgba(240,149,106,0.13), 0 4px 20px rgba(0,0,0,0.05);
}
.dienst-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.dienst-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--peach-pale);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.dienst-icon-wrap svg { width: 22px; height: 22px; color: var(--peach); }
.dienst-card:hover .dienst-icon-wrap { background: var(--peach-light); transform: scale(1.08) rotate(-4deg); }
.dienst-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 300; color: var(--peach);
  opacity: 0.4; letter-spacing: 0.05em;
}
.dienst-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.7rem;
}
.dienst-desc {
  font-size: 0.86rem; font-weight: 300; line-height: 1.78;
  color: var(--muted); flex: 1; margin-bottom: 1.6rem;
}

/* ─── OVER PETRA ───────────────────────── */
#over {
  padding: 8rem 4rem;
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem;
  align-items: center; position: relative; overflow: hidden;
}
.over-bg-glow {
  position: absolute; bottom: -150px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,149,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.over-visual { position: relative; z-index: 1; }
.over-img-frame {
  width: 100%; aspect-ratio: 4/5; border-radius: 26px; overflow: hidden;
  border: 1.5px solid rgba(240,149,106,0.12); position: relative;
}
.over-img-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.over-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 118px; height: 118px; border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--gold));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 10px 36px rgba(240,149,106,0.45);
}
.over-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1;
}
.over-badge-label {
  font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); margin-top: 0.2rem;
}
.over-stat-pill {
  position: absolute; top: 2rem; left: -2rem;
  background: var(--peach-pale); border-radius: 14px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  border: 1.5px solid rgba(240,149,106,0.25);
  z-index: 2;
}
.over-stat-pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 400; color: var(--peach); line-height: 1;
}
.over-stat-pill-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.2rem;
}

.over-content { position: relative; z-index: 1; }
.over-content .section-title { color: var(--white); margin-bottom: 2rem; }
.over-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; font-style: italic;
  line-height: 1.7; color: rgba(255,255,255,0.78);
  margin-bottom: 2rem; padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--peach);
  background: rgba(240,149,106,0.06); border-radius: 0 10px 10px 0;
}
.over-body {
  font-size: 0.9rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.52); margin-bottom: 2.5rem;
}
.over-body strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.over-usps { list-style: none; margin-bottom: 2.5rem; }
.over-usps li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.87rem; font-weight: 400;
  color: rgba(255,255,255,0.68);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(240,149,106,0.08);
}
.usp-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(240,149,106,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.05rem;
}
.usp-dot svg { width: 11px; height: 11px; color: var(--peach); }

/* ─── WERKWIJZE ────────────────────────── */
#werkwijze {
  padding: 8rem 4rem;
  background: var(--cream);
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem; margin-top: 4rem;
}
.step {
  background: var(--white); border-radius: 22px; padding: 2.2rem;
  border: 1.5px solid rgba(240,149,106,0.1);
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(240,149,106,0.1);
  border-color: rgba(240,149,106,0.25);
}
.step-accent {
  position: absolute; top: 0; right: 0;
  width: 70px; height: 70px; border-radius: 0 22px 0 70px;
  background: var(--peach-pale);
}
.step-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--peach-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem; position: relative; z-index: 1;
}
.step-icon svg { width: 20px; height: 20px; color: var(--peach); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(240,149,106,0.18); line-height: 1;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.7rem;
}
.step-desc {
  font-size: 0.83rem; font-weight: 300; line-height: 1.78; color: var(--muted);
}

/* ─── CTA CONTACT ──────────────────────── */
#contact {
  padding: 10rem 4rem;
  background: linear-gradient(150deg, var(--ink) 0%, #2a1f35 50%, #1c1410 100%);
  text-align: center; position: relative; overflow: hidden;
}
.contact-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.contact-glow-1 {
  width: 700px; height: 700px; top: -250px; left: -180px;
  background: radial-gradient(circle, rgba(240,149,106,0.09) 0%, transparent 70%);
}
.contact-glow-2 {
  width: 500px; height: 500px; bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(200,150,62,0.07) 0%, transparent 70%);
}
.contact-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peach); font-weight: 700; margin-bottom: 2rem;
  background: rgba(240,149,106,0.1); padding: 0.45rem 1.2rem; border-radius: 50px;
  border: 1px solid rgba(240,149,106,0.2);
}
.contact-eyebrow svg { width: 14px; height: 14px; }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.04;
  color: var(--white); margin-bottom: 1.5rem;
}
.contact-title em { font-style: italic; color: var(--peach); }
.contact-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.52); margin-bottom: 3.5rem;
}
.contact-sub strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: #25D366; color: var(--white);
  padding: 1.3rem 3rem; border-radius: 60px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 44px rgba(37,211,102,0.38);
  transition: all 0.25s;
}
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 60px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 22px; height: 22px; }
.contact-trust {
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.38);
}
.trust-item svg { width: 14px; height: 14px; color: var(--peach); flex-shrink: 0; }

/* ─── FOOTER ───────────────────────────── */
footer.site-footer {
  background: #0e0e1c; color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
footer.site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer.site-footer a:hover { color: var(--peach); }
.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem; padding: 2.5rem 4rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.footer-logo-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.footer-logo-img { height: 28px; width: auto; }
.footer-logo-text { font-family: var(--font-serif); font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-about-text { margin-top: 0.6rem; line-height: 1.55; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.footer-social-link { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-social-link:hover { color: var(--peach); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-heading {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.7); margin-bottom: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.3rem; }
.footer-links a { font-size: 0.72rem; line-height: 1.5; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--peach); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.3);
  max-width: 1100px; margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--peach); }

/* ─── TARIEVEN ─────────────────────────── */
#tarieven {
  padding: 6rem 4rem;
  background: var(--sand);
}
.tarief-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.tarief-text-side .section-eyebrow { margin-bottom: 0.5rem; }
.tarief-text-side .section-title { margin-bottom: 1.5rem; }
.tarief-body {
  font-size: 0.95rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 2rem;
}
.tarief-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.65rem;
}
.tarief-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
}
.tarief-features li svg { width: 16px; height: 16px; color: var(--peach); flex-shrink: 0; }

.tarief-price-side { display: flex; justify-content: center; }
.tarief-price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2.5rem 2rem;
  width: 100%; max-width: 360px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 48px rgba(240,149,106,0.15), 0 2px 8px rgba(0,0,0,0.04);
  border: 2px solid rgba(240,149,106,0.25);
}
.tarief-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--peach), var(--gold));
}
.tarief-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--peach), var(--gold));
  color: var(--white);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tarief-price {
  display: flex; align-items: flex-start; justify-content: center; gap: 0.15rem;
  margin-bottom: 0.3rem;
}
.tarief-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--peach);
  margin-top: 0.6rem;
}
.tarief-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--peach), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tarief-per {
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  margin-bottom: 1.8rem;
}
.tarief-per span { font-weight: 400; opacity: 0.7; font-size: 0.78rem; }
.tarief-includes {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 2rem;
}
.tarief-includes span {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--peach-pale); color: var(--peach);
  padding: 0.45rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}

/* ─── SERVICE LANDING PAGE ─────────────── */
.service-hero {
  padding: 10rem 4rem 5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.service-hero-blob {
  position: absolute; top: -120px; right: -100px;
  width: 500px; height: 500px; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(circle, rgba(240,149,106,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.service-hero-inner {
  max-width: 800px; position: relative; z-index: 1;
}
.service-hero .section-eyebrow { margin-bottom: 1.5rem; }
.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.08; color: var(--ink);
  margin-bottom: 1.5rem;
}
.service-hero h1 em { font-style: italic; color: var(--peach); }
.service-hero-sub {
  font-size: 1.1rem; font-weight: 300; line-height: 1.85;
  color: var(--muted); max-width: 620px; margin-bottom: 2.5rem;
}
.service-hero-sub strong { color: var(--ink); font-weight: 600; }

/* Service content blocks */
.service-content {
  padding: 6rem 4rem;
}
.service-content.alt-bg { background: var(--sand); }
.service-content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.service-content-grid.reversed { direction: rtl; }
.service-content-grid.reversed > * { direction: ltr; }
.service-feature-list { list-style: none; }
.service-feature-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(240,149,106,0.12);
  font-size: 0.92rem; font-weight: 400; color: var(--ink-soft);
  line-height: 1.6;
}
.service-feature-list li .check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--peach-pale); flex-shrink: 0; margin-top: 0.1rem;
  display: flex; align-items: center; justify-content: center;
}
.service-feature-list li .check-icon svg { width: 12px; height: 12px; color: var(--peach); }
.service-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--ink); line-height: 1.15;
  margin-bottom: 1.5rem;
}
.service-content h2 em { font-style: italic; color: var(--peach); }
.service-content p.body-text {
  font-size: 0.95rem; font-weight: 300; line-height: 1.85;
  color: var(--muted); margin-bottom: 1.5rem;
}
.service-content p.body-text strong { color: var(--ink); font-weight: 600; }

/* Service visual card */
.service-visual-card {
  background: var(--white);
  border-radius: 24px; padding: 3rem;
  border: 1.5px solid rgba(240,149,106,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  text-align: center;
}
.service-visual-card .big-icon {
  width: 80px; height: 80px; border-radius: 22px;
  background: var(--peach-pale); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.service-visual-card .big-icon svg { width: 36px; height: 36px; color: var(--peach); }
.service-visual-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; color: var(--ink); margin-bottom: 0.8rem;
}
.service-visual-card p {
  font-size: 0.86rem; font-weight: 300; line-height: 1.7; color: var(--muted);
}

/* Service page images */
.service-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.service-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 280px; max-height: 400px;
}

/* ─── OVER ONS PAGE ────────────────────── */
.about-hero {
  padding: 10rem 4rem 6rem;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.about-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,149,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 6rem;
  align-items: center; position: relative; z-index: 1;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(240,149,106,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.about-hero-content .section-eyebrow { color: var(--peach-light); }
.about-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300; line-height: 1.08;
  color: var(--white); margin-bottom: 2rem;
}
.about-hero-content h1 em { font-style: italic; color: var(--peach); }
.about-hero-content .intro-text {
  color: rgba(255,255,255,0.6);
}
.about-hero-content .intro-text strong {
  color: rgba(255,255,255,0.9);
}

.about-story {
  padding: 6rem 4rem;
  background: var(--cream);
}
.about-story-inner {
  max-width: 820px; margin: 0 auto;
}
.about-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--ink); line-height: 1.15;
  margin-bottom: 2rem;
}
.about-story h2 em { font-style: italic; color: var(--peach); }
.about-story p {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: var(--muted); margin-bottom: 1.5rem;
}
.about-story p strong { color: var(--ink); font-weight: 600; }

.about-values {
  padding: 6rem 4rem;
  background: var(--sand);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0;
}
.value-card {
  background: var(--white); border-radius: 22px; padding: 2.4rem;
  border: 1.5px solid rgba(240,149,106,0.1);
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(240,149,106,0.1);
}
.value-card .v-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--peach-pale); margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.value-card .v-icon svg { width: 24px; height: 24px; color: var(--peach); }
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.84rem; font-weight: 300; line-height: 1.7; color: var(--muted);
}

/* ─── HERO ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease 0.2s both; }
.hero-title   { animation: fadeUp 0.7s ease 0.35s both; }
.hero-sub     { animation: fadeUp 0.7s ease 0.5s both; }
.hero-actions { animation: fadeUp 0.7s ease 0.65s both; }
.hero-stats   { animation: fadeUp 0.7s ease 0.8s both; }

/* ─── RESPONSIVE ───────────────────────── */
/* Mobile nav open state */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(18px);
  padding: 1.5rem 2rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(240,149,106,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.nav-links.mobile-open a { font-size: 0.9rem; opacity: 0.8; }

@media (max-width: 960px) {
  nav.site-nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo-text { display: none; }
  .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.75rem; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none !important; box-shadow: none; border: none;
    padding: 0 0 0 1rem; min-width: auto !important;
    background: transparent;
    display: flex !important; flex-direction: column !important;
    gap: 0;
  }
  .dropdown-column + .dropdown-column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(240,149,106,0.1);
    padding-top: 0.3rem;
    margin-top: 0.3rem;
  }
  .dropdown-column {
    flex: 1 1 auto;
  }
  .dropdown-section-label {
    font-size: 0.6rem;
    padding: 0.4rem 0.85rem 0.15rem;
  }
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 7rem 2rem 5rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; text-align: center; }
  #intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 2rem; }
  .intro-label { font-size: 2.5rem; }
  #diensten, #contact, #werkwijze, #over { padding: 5rem 2rem; }
  .diensten-grid { grid-template-columns: 1fr; gap: 1rem; }
  #over { grid-template-columns: 1fr; gap: 4rem; }
  .over-visual { max-width: 320px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-title { font-size: 2rem; }
  .contact-title { font-size: 2.2rem; }
  .contact-trust { flex-wrap: wrap; gap: 1.2rem; }
  .whatsapp-btn { width: 100%; justify-content: center; }
  footer.site-footer .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1rem 1.5rem; }
  .service-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-content-grid.reversed { direction: ltr; }
  .service-hero h1 { font-size: 2.4rem; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .service-hero, .service-content, .about-hero, .about-story, .about-values { padding-left: 2rem; padding-right: 2rem; }
  #klanten { padding: 4rem 2rem; }
  #tarieven { padding: 4rem 1.5rem; }
  .tarief-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .tarief-price-card { max-width: 100%; }
  .tarief-card { padding: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  .hero-left { padding: 6rem 1.5rem 4rem; }
  .hero-title { font-size: 2.2rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-item { border-right: none; border-bottom: 1.5px solid rgba(240,149,106,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .intro-label { font-size: 2rem; }
  .intro-pills { gap: 0.5rem; }
  .pill { font-size: 0.72rem; padding: 0.5rem 0.8rem; }
  .section-title { font-size: 1.7rem; }
  .contact-title { font-size: 1.8rem; }
  .contact-inner { padding: 4rem 1.5rem; }
  .marquee-item { font-size: 0.72rem; padding: 0 1.2rem; }
  .dienst-card { padding: 1.8rem; }
  .over-usps li { font-size: 0.85rem; }
  .tarief-amount { font-size: 3.8rem; }
  .tarief-desc { font-size: 0.85rem; }
  .tarief-features li { font-size: 0.8rem; }
  .service-image-wrap img { min-height: 200px; max-height: 280px; }
  .nav-cta { padding: 0.55rem 1rem; font-size: 0.7rem; }
}

/* ─── BLOG STYLES ──────────────────────── */
.blog-breadcrumb-bar {
  padding: 1.2rem 4rem; padding-top: 6rem;
  background: var(--cream); font-size: 0.78rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--peach); }
.breadcrumb-sep { margin: 0 0.4rem; opacity: 0.4; }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

.blog-hero {
  background: var(--cream); padding: 3rem 4rem 4rem;
}
.blog-hero-inner { max-width: 780px; }
.blog-category-tags { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.blog-cat-tag {
  background: rgba(240,149,106,0.12); color: var(--peach); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: 20px; text-decoration: none;
}
.blog-cat-tag:hover { background: rgba(240,149,106,0.2); }
.blog-hero h1 {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 400;
  color: var(--ink); line-height: 1.2; margin-bottom: 1.5rem;
}
.blog-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; }
.blog-meta-author { display: flex; align-items: center; gap: 0.7rem; }
.blog-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(240,149,106,0.3); }
.blog-author-name {
  font-weight: 600; color: var(--ink); text-decoration: none;
  font-size: 0.88rem; display: block;
}
.blog-author-name:hover { color: var(--peach); }
.blog-author-role { font-size: 0.72rem; color: var(--muted); display: block; margin-top: 0.1rem; }
.blog-meta-details { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.blog-date, .blog-updated, .blog-reading-time {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: var(--muted);
}
.blog-updated { color: var(--peach); font-style: italic; }

.blog-featured-image {
  max-width: 900px; margin: 0 auto; padding: 0 4rem;
}
.blog-featured-image img {
  width: 100%; height: auto; border-radius: 12px;
  aspect-ratio: 16/9; object-fit: cover;
}

.blog-content {
  max-width: 720px; margin: 3rem auto; padding: 0 4rem;
  font-size: 1.02rem; line-height: 1.8; color: var(--ink);
}
.blog-content h2 { font-family: var(--font-serif); font-size: 1.7rem; margin: 2.5rem 0 1rem; }
.blog-content h3 { font-family: var(--font-serif); font-size: 1.3rem; margin: 2rem 0 0.8rem; }
.blog-content p { margin-bottom: 1.2rem; }
.blog-content ul, .blog-content ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.blog-content li { margin-bottom: 0.4rem; }
.blog-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
.blog-content blockquote {
  border-left: 3px solid var(--peach); padding: 1rem 1.5rem;
  margin: 1.5rem 0; background: var(--sand); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--muted);
}

.blog-tags { max-width: 720px; margin: 2rem auto; padding: 0 4rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.blog-tags-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-right: 0.3rem; }
.blog-tag {
  font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 20px;
  background: var(--sand); color: var(--muted); text-decoration: none;
  transition: all 0.2s;
}
.blog-tag:hover { background: rgba(240,149,106,0.15); color: var(--peach); }

.blog-author-box {
  max-width: 720px; margin: 3rem auto; padding: 2rem;
  background: var(--sand); border-radius: 16px;
  display: flex; gap: 1.5rem; align-items: flex-start;
  margin-left: auto; margin-right: auto;
}
.author-box-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(240,149,106,0.2); }
.author-box-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--peach); font-weight: 700; margin-bottom: 0.2rem; }
.author-box-info h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--ink); }
.author-box-info p { font-size: 0.85rem; line-height: 1.6; color: var(--muted); margin-bottom: 1rem; }
.author-box-links { display: flex; gap: 1rem; }
.author-linkedin, .author-whatsapp {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 8px; transition: all 0.2s;
}
.author-linkedin { background: #0077b5; color: white; }
.author-linkedin:hover { background: #005f8f; color: white; }
.author-whatsapp { background: #25d366; color: white; }
.author-whatsapp:hover { background: #1da855; color: white; }

.blog-related { max-width: 900px; margin: 4rem auto; padding: 0 4rem 3rem; }
.blog-related h2 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--ink); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Blog cards (shared between single & archive) */
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card-thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-thumb-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--muted);
}
.blog-card-thumb-placeholder svg { width: 40px; height: 40px; }
.blog-card-body { padding: 1.2rem; }
.blog-card-cat {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--peach);
}
.blog-card-body h2, .blog-card-body h3 {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400;
  color: var(--ink); margin: 0.4rem 0; line-height: 1.3;
}
.blog-card-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.8rem; }
.blog-card-meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; color: var(--muted); }
.blog-card-author { display: flex; align-items: center; gap: 0.4rem; }
.blog-card-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

/* Blog archive */
.blog-archive { padding-top: 5rem; }
.blog-archive-hero {
  background: var(--cream); padding: 4rem 4rem 3rem; text-align: center;
}
.blog-archive-hero h1 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--ink); }
.blog-archive-sub { font-size: 0.95rem; color: var(--muted); max-width: 600px; margin: 1rem auto 0; line-height: 1.6; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto; padding: 3rem 4rem;
}
.blog-pagination { text-align: center; padding: 0 4rem 4rem; }
.blog-pagination a, .blog-pagination span {
  display: inline-block; padding: 0.5rem 1rem; margin: 0 0.2rem;
  border-radius: 8px; font-size: 0.82rem; text-decoration: none;
}
.blog-pagination a { background: var(--sand); color: var(--ink); }
.blog-pagination a:hover { background: var(--peach); color: white; }
.blog-pagination .current { background: var(--peach); color: white; }
.blog-empty { text-align: center; padding: 4rem; color: var(--muted); }

/* ─── LEGAL PAGE STYLES ────────────────── */
.legal-page { padding-top: 5rem; }
.legal-hero {
  background: var(--cream); padding: 4rem 4rem 3rem; text-align: center;
}
.legal-hero h1 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--ink); }
.legal-updated { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.legal-content {
  max-width: 720px; margin: 3rem auto; padding: 0 4rem 3rem;
  font-size: 0.92rem; line-height: 1.8; color: var(--ink);
}
.legal-content h2 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400;
  margin: 2rem 0 0.8rem; color: var(--ink);
  padding-bottom: 0.4rem; border-bottom: 1px solid rgba(240,149,106,0.15);
}
.legal-content p { margin-bottom: 1rem; }

/* ─── BLOG / LEGAL MOBILE ──────────────── */
@media (max-width: 960px) {
  .blog-hero { padding: 2rem 1.5rem 3rem; }
  .blog-hero h1 { font-size: 2rem; }
  .blog-breadcrumb-bar { padding: 1rem 1.5rem; padding-top: 5.5rem; }
  .blog-meta { flex-direction: column; gap: 0.8rem; }
  .blog-featured-image { padding: 0 1.5rem; }
  .blog-content { padding: 0 1.5rem; }
  .blog-tags { padding: 0 1.5rem; }
  .blog-author-box { flex-direction: column; align-items: center; text-align: center; margin: 2rem 1.5rem; }
  .author-box-links { flex-direction: column; align-items: center; }
  .blog-related { padding: 0 1.5rem 2rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .blog-archive-hero { padding: 3rem 1.5rem 2rem; }
  .blog-archive-hero h1 { font-size: 1.8rem; }
  .legal-hero { padding: 3rem 1.5rem 2rem; }
  .legal-content { padding: 0 1.5rem 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
  .footer-col-about { grid-column: span 2; }
}
@media (max-width: 600px) {
  .blog-hero h1 { font-size: 1.6rem; }
  .blog-card-body h2, .blog-card-body h3 { font-size: 0.95rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-col-about { grid-column: span 1; }
}
