/**
 * MANON VAN DEN BURG BV - WEBSITE STYLESHEET
 * ============================================
 * Structure:
 *   1. @font-face (self-hosted woff2, GDPR compliant)
 *   2. CSS Variables (:root)
 *   3. Reset & Base
 *   4. Navigation (fixed, with hamburger for mobile)
 *   5. Hero (index.html) & Page Headers (subpages)
 *   6. Shared components (eyebrow, h2, section-cta)
 *   7. Homepage sections: Over teaser, Diensten cards, Aanpak, Contact
 *   8. Over page: Intro, Snijvlak, Reizen grid, Deepdive (filosofie)
 *   9. Diensten page: Dienst sections (dark/light alternating)
 *  10. Experience cards, Footer, Animations, Responsive
 *
 * Variables: --ink (#141414), --purple (#3d3270), --cream (#f8f6f2), --rule (#dedad3)
 * Fonts: Cormorant Garamond (headings/body), Syne (UI/labels)
 * Breakpoints: 960px (tablet), 520px (mobile)
 * Logo assets: Logo/ subdirectory
 */

/* Self-hosted fonts with font-display for performance */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-v24-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-v24-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-v24-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-v24-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ════════════════════════════
   CSS VARIABLES
════════════════════════════ */
:root {
  --ink:        #141414;     /* Primary text color */
  --ink-mid:    #3a3a3a;     /* Secondary text (gray) */
  --ink-soft:   #7a7a7a;     /* Tertiary text (lighter gray) */
  --purple:     #3d3270;     /* Primary brand accent */
  --purple-mid: #6b5fa8;     /* Purple for dark backgrounds */
  --purple-pale:#ede9f8;     /* Very light purple background */
  --cream:      #f8f6f2;     /* Default background color */
  --rule:       #dedad3;     /* Subtle border/divider color */
  --rule-dark:  rgba(255,255,255,0.08); /* Dark mode divider */
}

/* ════════════════════════════
   RESET & BASE STYLES
════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* SKIP NAVIGATION LINK (accessibility) */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--purple); color: #fff;
  padding: 8px 16px; text-decoration: none;
  z-index: 400; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

.wm {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: url('Logo/Logo_final.svg');
  background-size: 58%; background-position: center; background-repeat: no-repeat;
  pointer-events: none;
}
.wm-light { opacity: 0.09; }
.wm-dark  { opacity: 0.07; filter: brightness(0) invert(1); z-index: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* GRAIN */
body::before {
  content: '';
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 999;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}


/* ════════════════════════════
   NAV
════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 3.5rem;
  background: rgba(248,246,242,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  overflow: visible;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--ink);
}
.nav-logo-img {
  height: 44px; width: auto; display: block;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.03em; color: var(--ink);
  line-height: 1.2;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; position: relative; }
.nav-links li { position: relative; }
.nav-links a {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:focus {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}
.nav-links a.active { color: var(--purple); font-weight: 700; position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  height: 2px; width: 45px; background: var(--purple);
  border-radius: 1px;
}

/* HAMBURGER */
.nav-burger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 300;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1), opacity 0.2s, width 0.35s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE OVERLAY */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 240;
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 300; font-style: normal;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.6rem 2rem;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu a:hover { color: #fff; transform: translateX(6px); }
.mobile-menu-dot {
  width: 5px; height: 5px;
  background: var(--purple-mid); border-radius: 50%;
  margin: 0.5rem 0;
}
.mobile-menu-footer {
  position: absolute; bottom: 2rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ════════════════════════════
   HERO & PAGE HEADER
════════════════════════════ */
section#main-content {
  min-height: 100vh;
  min-height: 100svh;
  min-height: -webkit-fill-available;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  background: var(--purple-pale);
  overflow: hidden;
}
section#main-content::before {
  content: '';
  position: absolute;
  bottom: -5%; left: -5%; right: -5%;
  height: 35%;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
  pointer-events: none;
}
.hero-waves {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-waves svg {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  height: auto;
}

.hero-left {
  padding: 7rem 4rem 5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 2.5rem;
}
.hero-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--purple);
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 5.5vw, 6.5rem);
  font-weight: 600; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 2.2rem;
}
h1 em {
  font-style: normal; font-weight: 300;
  color: var(--purple); display: block;
}
.hero-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.65;
  max-width: 430px; margin-bottom: 3rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.95rem 2rem;
  background: var(--ink); color: #fff;
  text-decoration: none;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  width: -webkit-fit-content;
  width: fit-content;
  transition: background 0.2s, gap 0.2s;
}
.hero-cta:hover { background: var(--purple); gap: 1.6rem; }
.hero-cta:focus {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 7rem 3.5rem 5rem 4rem;
  overflow: hidden; z-index: 2;
}
.traits-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: var(--purple); margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.hero-traits { position: relative; z-index: 2; margin-top: 3.5rem; }
.trait {
  padding: 1rem 0;
  border-top: 1px solid rgba(61,50,112,0.15);
  display: flex; align-items: baseline; gap: 1.2rem;
}
.trait:last-child { border-bottom: 1px solid rgba(61,50,112,0.15); }
.trait-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600; font-style: normal;
  color: var(--purple); min-width: 200px; flex-shrink: 0;
  line-height: 1.3;
}
.trait-desc {
  font-size: 1rem; font-weight: 400;
  color: var(--ink-mid); letter-spacing: 0.02em; line-height: 1.5;
  padding-left: 0.3rem;
}
@media (max-width: 520px) {
  .trait { flex-direction: column; gap: 0.3rem; }
  .trait-word { min-width: auto; font-size: 1.5rem; }
}

/* PAGE HEADER (for subpages: diensten, over, contact)
   Reuses wave decoration and structure from hero section. Add ID='main-content' for a11y. */
.page-header {
  min-height: 40vh;
  padding: 8.5rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  background: var(--purple-pale);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%; right: -5%;
  height: 35%;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
  pointer-events: none;
}
.page-header-waves {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-header-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header h1 {
  margin-bottom: 0;
  position: relative; z-index: 2;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}
.page-header h1 em {
  display: block;
}
.page-header-actions {
  display: flex; gap: 1rem;
  margin-top: 2rem;
  position: relative; z-index: 2;
}
.page-header-actions .btn-ghost {
  font-size: 0.75rem;
  padding: 0.7rem 1.6rem;
  border-color: var(--purple);
  color: var(--purple);
}
.page-header-actions .btn-ghost:hover {
  background: var(--purple);
  color: #fff;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* ════════════════════════════
   SHARED
════════════════════════════ */
section { padding: 7rem 3.5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }

.eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--purple);
}
.eyebrow-dark { color: rgba(255,255,255,0.35); }
.eyebrow-dark::before { background: rgba(255,255,255,0.35); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 1rem;
}
h2 em { font-style: normal; font-weight: 300; color: var(--purple); }
.section-inner > h2 { margin-bottom: 2.5rem; }
.over-text h2 { margin-bottom: 1.8rem; }

/* ════════════════════════════
   OVER (met reisfoto's)
════════════════════════════ */
#over {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.section-flow {
  width: 100%;
  height: 100px;
  background: var(--cream);
  display: block;
  overflow: hidden;
  pointer-events: none;
  margin: -2rem 0;
}
.section-flow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}
.over-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 1.4rem;
}
.over-text p strong { font-weight: 600; color: var(--ink); }
.over-text p:last-child { margin-bottom: 0; }

/* OVER TEASER (homepage compact version) */
.over-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}
.over-teaser-text h2 { margin-bottom: 1.8rem; }
.over-teaser-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
}
.over-teaser-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 380px;
  border-radius: 2px;
  position: relative;
  position: relative;
}
.over-teaser-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  object-position: 25% center;
  filter: saturate(0.15) brightness(1.05);
  transition: filter 1.2s ease;
}
.over-teaser-image:hover img {
  filter: saturate(1) brightness(1.05);
  transition: filter 0.4s ease-out;
}


.over-right {
  display: flex; flex-direction: column; gap: 0;
  position: sticky; top: 90px;
}

/* REISFOTO'S IN RECHTERKOLOM OVER MIJ */
.over-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.over-travel-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.over-travel-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.15) brightness(1.05);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 1.2s ease;
}
.over-travel-item::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(61,50,112,0.32);
  -webkit-mix-blend-mode: color;
  mix-blend-mode: color;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.over-travel-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1.05);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease-out;
}
.over-travel-item:hover::after {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.over-travel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 0.6rem 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.over-travel-item:hover .over-travel-caption { opacity: 1; }
.over-travel-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.7;
  margin-top: 1.2rem;
  font-style: italic;
}
.over-travel-credit {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 0.6rem;
}
.travel-desktop { display: block; }

/* ════════════════════════════
   OVER PAGE (over.html) — distinct from homepage teaser
════════════════════════════ */
.over-intro { background: var(--cream); padding-top: 4rem; }
.over-intro-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 5rem;
  align-items: center;
}
.over-intro-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  line-height: 1.7; color: var(--ink);
  margin-bottom: 1.8rem;
}
.over-intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 1.4rem;
}
.over-intro-text p:last-child { margin-bottom: 0; }
.over-intro-photo,
.over-snijvlak-photo {
  position: relative;
}
.over-intro-photo {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.over-intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.15) brightness(1.05);
  transition: filter 1.2s ease;
}
.over-intro-photo:hover img {
  filter: saturate(1) brightness(1.05);
  transition: filter 0.4s ease-out;
}

.over-snijvlak { background: #fff; }
.over-snijvlak-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.over-snijvlak-photo {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.over-snijvlak-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.15) brightness(1.05);
  transition: filter 1.2s ease;
}
.over-snijvlak-photo:hover img {
  filter: saturate(1) brightness(1.05);
  transition: filter 0.4s ease-out;
}
.over-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 0.6rem 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.over-intro-photo:hover .over-photo-caption,
.over-snijvlak-photo:hover .over-photo-caption,
.over-teaser-image:hover .over-photo-caption {
  opacity: 1;
}

.over-snijvlak-text h2 { margin-bottom: 1.8rem; }
.over-snijvlak-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 1.4rem;
}
.over-snijvlak-text p strong { font-weight: 600; color: var(--ink); }

.over-reizen { background: var(--cream); }
.over-reizen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  margin-top: 2rem;
  aspect-ratio: 1/1;
  max-width: 1000px;
}
.over-reizen-item {
  overflow: hidden;
  position: relative;
}
.over-reizen-item.over-reizen-large {
  grid-column: span 2;
  grid-row: span 2;
}
.over-reizen-item.over-reizen-tall {
  grid-row: span 2;
}
.over-reizen-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.15) brightness(1.05);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 1.2s ease;
}
.over-reizen-item::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(61,50,112,0.30);
  mix-blend-mode: color;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.over-reizen-item:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.82);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease-out;
}
.over-reizen-item:hover::after {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.over-reizen-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 0.6rem 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.over-reizen-item:hover .over-reizen-caption { opacity: 1; }
.over-reizen-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.7;
  margin-top: 1.5rem;
  font-style: italic;
  max-width: 680px;
}
.over-reizen-credit {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 0.6rem;
}

/* ════════════════════════════
   DIENSTEN
════════════════════════════ */
#diensten { background: var(--cream); position: relative; }
.diensten-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  border-top: 2px solid var(--ink);
}
.dienst-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
  position: relative;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.dienst-card-cta {
  align-self: end;
  padding-top: 1.5rem;
}
.dienst-card-cta .section-cta-link {
  border-top: none;
  padding-top: 0;
}
.dienst-card:nth-child(3n) { border-right: none; }
.dienst-card:hover { background: var(--purple-pale); }

.dienst-icon {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple);
  margin-bottom: 1.8rem;
}
.dienst-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.9rem; line-height: 1.2;
}
.dienst-card-top {
}
.dienst-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 0;
}
.dienst-tag {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-pale);
  padding: 0.25rem 0.6rem; border-radius: 2px;
}
.dienst-recognition {
  margin-bottom: 1.4rem;
}
.dienst-recognition-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 0.7rem;
}
.dienst-recognition-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.dienst-recognition-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: var(--ink-mid); line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.dienst-recognition-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.4;
}
.dienst-text {
  font-size: 0.94rem; font-weight: 400;
  color: var(--ink-soft); line-height: 1.75;
  border-top: 1px solid var(--rule);
  padding-top: 1.1rem;
  margin-top: 1.1rem;
}
.dienst-text strong {
  font-weight: 600; color: var(--ink);
}

/* ════════════════════════════
   DEEPDIVE SECTIONS (used on over.html filosofie section)
   Two-column layout with dark/light variants.
════════════════════════════ */
.deepdive {
  position: relative; overflow: hidden;
  padding: 7rem 3.5rem;
}
.deepdive-dark {
  background: var(--ink);
  color: #fff;
}
.deepdive-dark::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0;
  background-image: url('Logo/Logo_final.svg');
  background-size: 58%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.035;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.deepdive .section-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem; align-items: start;
}
.deepdive .section-inner > .eyebrow,
.deepdive .section-inner > h2 {
  grid-column: 1 / -1;
}
.deepdive .section-inner > h2 {
  margin-bottom: 1.5rem;
}
.deepdive-dark .eyebrow { color: var(--purple-mid); }
.deepdive-dark .eyebrow::before { background: var(--purple-mid); }
.deepdive-dark h2 { color: #fff; }
.deepdive-dark h2 em { color: var(--purple-mid); }

.deepdive-left p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  line-height: 1.8; margin-bottom: 1.2rem;
}
.deepdive-dark .deepdive-left p {
  color: rgba(255,255,255,0.65);
}
.deepdive-left p:last-child { margin-bottom: 0; }

.deepdive-right {
  display: flex; flex-direction: column; gap: 0;
}
.deepdive-vraag {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.deepdive-vraag:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.deepdive-vraag-label {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.deepdive-dark .deepdive-vraag-label {
  color: var(--purple-mid);
}
.deepdive-vraag-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  line-height: 1.55;
}
.deepdive-dark .deepdive-vraag-text {
  color: rgba(255,255,255,0.7);
}

/* ════════════════════════════
   DIENST SECTIONS (AI, TRANSFORMATIE, LEIDERSCHAP)
   New visual layout with alternating orientations and card-based content.
   Dark variant: black bg with watermark, light variant: cream bg (no watermark).
   Responsive grid that reorders content on tablet/mobile.
════════════════════════════ */
.dienst-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 3.5rem;
}
.dienst-section-dark {
  background: var(--ink);
  color: #fff;
}
.dienst-section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: url('Logo/Logo_final.svg');
  background-size: 58%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.035;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.dienst-section-light {
  background: var(--cream);
  color: var(--ink);
}

.dienst-section .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

/* DIENST 1 & 3: intro on left, content on right */
.dienst-section-dark .section-inner {
  grid-template-columns: 1.2fr 0.95fr;
}
.dienst-section-dark .dienst-content {
  grid-column: 1;
  grid-row: 1;
}
.dienst-section-dark .dienst-intro {
  grid-column: 2;
  grid-row: 1;
}

/* DIENST LIGHT: intro on left, content on right */
.dienst-section-light .section-inner {
  grid-template-columns: 0.95fr 1.2fr;
}
.dienst-section-light .dienst-intro {
  grid-column: 1;
  grid-row: 1;
}
.dienst-section-light .dienst-content {
  grid-column: 2;
  grid-row: 1;
}

.dienst-intro .eyebrow {
  margin-bottom: 1rem;
}
.dienst-section-dark .eyebrow {
  color: var(--purple-mid);
}
.dienst-section-dark .eyebrow::before {
  background: var(--purple-mid);
}
.dienst-section-light .eyebrow {
  color: var(--purple);
}
.dienst-section-light .eyebrow::before {
  background: var(--purple);
}

.dienst-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.dienst-section-dark .dienst-intro h2 {
  color: #fff;
}
.dienst-section-dark .dienst-intro h2 em {
  color: var(--purple-mid);
  font-style: normal;
  font-weight: 300;
}
.dienst-section-light .dienst-intro h2 {
  color: var(--ink);
}
.dienst-section-light .dienst-intro h2 em {
  color: var(--purple);
  font-style: normal;
  font-weight: 300;
}

.dienst-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dienst-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}
.dienst-section-dark .dienst-body p {
  color: rgba(255, 255, 255, 0.65);
}
.dienst-section-light .dienst-body p {
  color: var(--ink-mid);
}

/* CONTENT AREA: vragen + details side by side */
.dienst-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* VRAAG CARDS: 3 cards stacked with visual contrast */
.dienst-vragen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dienst-vragen-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.dienst-section-dark .dienst-vragen-title {
  color: var(--purple-mid);
}
.dienst-section-light .dienst-vragen-title {
  color: var(--purple);
}

.dienst-werkvormen {
  padding: 1.8rem;
  border-radius: 2px;
  border: 1px solid;
}
.dienst-section-dark .dienst-werkvormen {
  background: rgba(107, 95, 168, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}
.dienst-section-light .dienst-werkvormen {
  background: rgba(237, 233, 248, 0.4);
  border-color: var(--rule);
}

.vraag-card {
  padding: 1.8rem;
  border-left: 3px solid;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dienst-section-dark .vraag-card {
  background: rgba(107, 95, 168, 0.08);
  border-left-color: var(--purple-mid);
}
.dienst-section-light .vraag-card {
  background: rgba(61, 50, 112, 0.06);
  border-left-color: var(--purple);
}
.vraag-card:hover {
  transform: translateX(6px);
  border-left-width: 5px;
}

.vraag-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}
.dienst-section-dark .vraag-label {
  color: var(--purple-mid);
}
.dienst-section-light .vraag-label {
  color: var(--purple);
}

.vraag-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}
.dienst-section-dark .vraag-text {
  color: rgba(255, 255, 255, 0.7);
}
.dienst-section-light .vraag-text {
  color: var(--ink-mid);
}

/* DETAILS AREA: werkvormen + outcomes */
.dienst-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.details-block {
  padding: 1.8rem;
  border-radius: 2px;
  border: 1px solid;
}
.dienst-section-dark .details-block {
  background: rgba(107, 95, 168, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}
.dienst-section-light .details-block {
  background: rgba(237, 233, 248, 0.4);
  border-color: var(--rule);
}

.details-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}
.dienst-section-dark .details-title {
  color: var(--purple-mid);
}
.dienst-section-light .details-title {
  color: var(--purple);
}

/* WERKVORMEN */
.werkvormen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.werkvorm-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.2s;
}
.dienst-section-dark .werkvorm-tag {
  color: var(--purple-mid);
  background: transparent;
  border-color: var(--purple-mid);
}
.dienst-section-dark .werkvorm-tag:hover {
  background: var(--purple-mid);
  color: var(--ink);
}
.dienst-section-light .werkvorm-tag {
  color: var(--purple);
  background: transparent;
  border-color: var(--purple);
}
.dienst-section-light .werkvorm-tag:hover {
  background: var(--purple);
  color: #fff;
}

/* OUTCOMES */
.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.outcomes-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.dienst-section-dark .outcomes-list li {
  color: rgba(255, 255, 255, 0.65);
}
.dienst-section-light .outcomes-list li {
  color: var(--ink-mid);
}
.outcomes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.5;
}
.dienst-section-dark .outcomes-list li::before {
  background: var(--purple-mid);
}
.dienst-section-light .outcomes-list li::before {
  background: var(--purple);
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 960px) {
  .dienst-section {
    padding: 5rem 3.5rem;
  }
  .dienst-section .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dienst-section-dark .dienst-intro,
  .dienst-section-dark .dienst-content,
  .dienst-section-light .dienst-intro,
  .dienst-section-light .dienst-content {
    grid-column: 1;
  }
  /* On tablet, intro comes first visually */
  .dienst-section-dark .dienst-intro {
    grid-row: 1;
  }
  .dienst-section-dark .dienst-content {
    grid-row: 2;
  }
  .dienst-section-light .dienst-intro {
    grid-row: 1;
  }
  .dienst-section-light .dienst-content {
    grid-row: 2;
  }
  .dienst-content {
    flex-direction: row;
    gap: 2rem;
  }
  .dienst-vragen,
  .dienst-details {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .dienst-section {
    padding: 3rem 1.4rem;
  }
  .dienst-intro h2 {
    font-size: 1.8rem;
  }
  .dienst-body p {
    font-size: 1rem;
  }
  .dienst-content {
    flex-direction: column;
    gap: 2rem;
  }
  .vraag-card,
  .details-block {
    padding: 1.4rem;
  }
  .vraag-label,
  .details-title {
    margin-bottom: 0.8rem;
  }
}

/* ════════════════════════════
   EXPERIENCE CARDS
════════════════════════════ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.experience-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.experience-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.experience-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.experience-role {
  font-size: 0.95rem; font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.experience-period {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .experience-grid { grid-template-columns: 1fr; }
}



/* ════════════════════════════
   AANPAK
════════════════════════════ */
#aanpak {
  background: var(--cream);
  color: var(--ink);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--rule);
}
.aanpak-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: start;
  position: relative; z-index: 1;
}
.aanpak-logo {
  margin-top: 2.5rem;
  max-width: 180px;
  opacity: 0.7;
}
#aanpak h2 { color: var(--ink); }
#aanpak h2 em { color: var(--purple); }
.aanpak-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 1.4rem;
}
.aanpak-body p:last-child { margin-bottom: 0; }

.principles { display: flex; flex-direction: column; }
.principle {
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background 0.2s, padding 0.2s, margin 0.2s;
}
.principle:last-child { border-bottom: 1px solid var(--rule); }
.principle:hover {
  background: var(--purple-pale);
  margin: 0 -0.8rem; padding: 0.9rem 0.8rem;
}
.p-dot {
  width: 5px; height: 5px;
  background: var(--purple); border-radius: 50%;
  flex-shrink: 0; margin-top: 0.5rem;
}
.p-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300; font-style: normal;
  color: var(--ink-mid); line-height: 1.5;
}

/* ════════════════════════════
   CONTACT
════════════════════════════ */
#contact {
  background: var(--purple);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.contact-inner {
  max-width: 680px; margin: 0 auto;
  position: relative; z-index: 1;
}
#contact .eyebrow { justify-content: center; }
#contact h2 { color: #fff; }
#contact h2 em { color: rgba(255,255,255,0.5); }
.contact-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75; margin-bottom: 2.5rem;
}

.contact-btns {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-light {
  padding: 1rem 2rem;
  background: #fff; color: var(--purple);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-light:hover { background: var(--cream); }
.btn-light:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.btn-ghost {
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.35); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-ghost:focus {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}

.contact-nietbellen {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  line-height: 1.65;
}
.contact-nietbellen strong {
  font-weight: 600; color: rgba(255,255,255,0.6);
}

.contact-knipoog {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}
.contact-knipoog a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-knipoog a:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ════════════════════════════
   SECTION CTA's
════════════════════════════ */
.section-cta {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rule);
  text-align: right;
}
.section-cta-link {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: gap 0.2s, color 0.15s;
}
.section-cta-link:hover { gap: 1.2rem; color: var(--ink); }
.section-cta-link:focus {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}
.section-cta-dark { border-top-color: rgba(255,255,255,0.08); }
.section-cta-dark .section-cta-link { color: rgba(255,255,255,0.5); }
.section-cta-dark .section-cta-link:hover { color: #fff; gap: 1.2rem; }

.deepdive-dark .section-cta { border-top-color: rgba(255,255,255,0.08); }
.deepdive-dark .section-cta-link { color: rgba(255,255,255,0.5); }
.deepdive-dark .section-cta-link:hover { color: #fff; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  padding: 2rem 3.5rem;
  background: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}
footer a { color: rgba(255,255,255,0.25); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.55); }
.footer-logo {
  height: 28px; width: auto; opacity: 0.25;
  filter: brightness(0) invert(1);
}

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
.fi {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.22s; }
.fi.d3 { transition-delay: 0.34s; }
.fi.d4 { transition-delay: 0.46s; }
.fi.vis { opacity: 1; transform: none; }

.ha {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.ha.d1 { transition-delay: 0.15s; }
.ha.d2 { transition-delay: 0.3s; }
.ha.d3 { transition-delay: 0.45s; }
.ha.d4 { transition-delay: 0.6s; }
.ha.vis { opacity: 1; transform: none; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0.9rem 1.4rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  section#main-content { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 1.4rem 3rem; }
  .hero-right { padding: 2.5rem 1.4rem 3rem; }

  .page-header { padding: 6rem 1.4rem 3rem; }

  section { padding: 5rem 1.4rem; }
  .deepdive { padding: 5rem 1.4rem; }
  .deepdive .section-inner { grid-template-columns: 1fr; gap: 3rem; }

  .over-grid,
  .over-teaser,
  .over-intro-layout,
  .over-snijvlak-layout,
  .aanpak-grid { grid-template-columns: 1fr; gap: 3rem; }
  .over-reizen-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; aspect-ratio: auto; max-width: none; }
  .over-reizen-grid .over-reizen-item { aspect-ratio: 1/1; }
  .over-reizen-grid .over-reizen-item[style] { grid-column: auto !important; grid-row: auto !important; }
  .over-reizen-item.over-reizen-large { grid-column: span 2 !important; grid-row: span 1 !important; aspect-ratio: 16/9; }
  .over-reizen-item.over-reizen-tall { grid-row: span 1 !important; }
  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-card { border-right: none; }
  .over-right { position: static; }
  .over-intro-photo { aspect-ratio: 4/3; }
  .over-intro-photo img { object-position: center 30%; }
  .over-snijvlak-photo { aspect-ratio: 4/3; }

  .travel-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-cta, .btn-light, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .contact-btns { flex-direction: column; align-items: center; }

  .aanpak-logo { display: none; }

  .page-header { padding: 5rem 1.4rem 2rem; }
  .page-header h1 { font-size: clamp(2rem, 10vw, 3.2rem); }

  section { padding: 3rem 1.4rem; }
  .deepdive { padding: 3rem 1.4rem; }

  .travel-grid {
    grid-template-columns: 1fr;
  }

  .over-travel-grid { grid-template-columns: repeat(2, 1fr); }
  .over-reizen-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; max-width: none; }
  .over-reizen-grid .over-reizen-item[style] { grid-column: auto !important; grid-row: auto !important; }
  .over-reizen-grid .over-reizen-item { aspect-ratio: 1/1; }
  .over-reizen-item.over-reizen-large { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 1/1; }
  .over-reizen-item.over-reizen-tall { grid-row: span 1 !important; }
  .travel-desktop { display: none !important; }
  .over-intro-photo { aspect-ratio: 4/3; }
  .over-intro-photo img { object-position: center 30%; }
  .over-snijvlak-photo { aspect-ratio: 4/3; }

  .section-cta { text-align: left; }

  .deepdive-left { margin-bottom: 2rem; }
  .deepdive-vraag { padding: 1.2rem 0; }
  .deepdive-vraag-text { font-size: 1rem; }
  .werkvormen { gap: 0.4rem; margin-top: 1.5rem; padding-top: 1rem; }
  .werkvorm-tag { padding: 0.4rem 0.8rem; font-size: 0.8rem; }

  .experience-grid { gap: 1.5rem; }
  .experience-card { padding: 1.5rem; }
  .experience-company { font-size: 1.15rem; }
}
