/* ==========================================================================
   MovendiuM — Design System
   ========================================================================== */

:root {
  /* Brand colors */
  --off-white: #F2F2EE;
  --black: #0D0D0D;
  --blue: #132033;
  --ocher: #E2A400;
  --ocher-dark: #C68E00;
  --light-gray: #E5E5E0;

  /* Derived */
  --ink: #0D0D0D;
  --muted: #5B5F66;
  --muted-light: rgba(242, 242, 238, 0.72);
  --border: #E0E0DA;
  --border-dark: rgba(242, 242, 238, 0.14);
  --card-bg: #FFFFFF;

  /* Typography */
  --font: "Poppins", Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(13, 13, 13, 0.04), 0 4px 16px rgba(13, 13, 13, 0.05);
  --shadow-md: 0 10px 40px rgba(13, 13, 13, 0.10);
  --section-y: 56px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-y) 0; }
.section--tight { padding: 36px 0; }
.section--light { background: var(--off-white); }
.section--gray { background: var(--light-gray); }
.section--dark { background: var(--black); color: var(--off-white); }
.section--blue { background: var(--blue); color: var(--off-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--blue h1,
.section--blue h2,
.section--blue h3 { color: var(--off-white); }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocher-dark);
  margin-bottom: 16px;
}
.section--dark .kicker,
.section--blue .kicker { color: var(--ocher); }

.section-head { max-width: 640px; margin-bottom: 26px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }
.section--dark .lead,
.section--blue .lead { color: var(--muted-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--ocher); color: var(--black); }
.btn--primary:hover { background: var(--ocher-dark); }

.btn--dark { background: var(--black); color: var(--off-white); }
.btn--dark:hover { background: #1c1c1c; }

.btn--ghost { background: transparent; color: var(--black); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--black); }

.btn--ghost-light { background: rgba(13, 13, 13, 0.4); color: var(--off-white); border-color: rgba(242, 242, 238, 0.6); backdrop-filter: blur(2px); }
.btn--ghost-light:hover { background: rgba(13, 13, 13, 0.6); border-color: var(--off-white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ocher-dark);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.18s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow,
.section--blue .link-arrow { color: var(--ocher); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 238, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2a2a2a;
  border-radius: 8px;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav a:hover { color: var(--black); background: rgba(13, 13, 13, 0.05); }
.nav a.active { color: var(--black); font-weight: 600; }
.nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  margin: 3px auto 0;
  background: var(--ocher);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Nav dropdown (Wat we doen -> Voor wie / Aanpak) */
.nav-dropdown { position: relative; display: flex; align-items: center; gap: 0; }
.nav-dropdown__trigger { display: inline-flex; align-items: center; }
.nav-dropdown__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  min-width: 44px; min-height: 44px; padding: 0 6px;
  color: #2a2a2a; border-radius: 8px; margin-left: -10px;
}
.nav-dropdown__toggle:hover { color: var(--black); }
.nav-dropdown__toggle:focus-visible { outline: 2px solid var(--ocher); outline-offset: 2px; }
.nav-dropdown__chev { width: 13px; height: 13px; transition: transform 0.2s var(--ease); }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 0; min-width: 232px;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s var(--ease);
  z-index: 60;
}
.nav-dropdown__menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover .nav-dropdown__chev,
.nav-dropdown:focus-within .nav-dropdown__chev,
.nav-dropdown.open .nav-dropdown__chev { transform: rotate(180deg); }
.nav-dropdown__menu a { white-space: nowrap; }
.nav .nav-dropdown__trigger.active::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  position: relative;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--off-white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.32) 0%, rgba(13, 13, 13, 0.16) 36%, rgba(13, 13, 13, 0.05) 66%, rgba(13, 13, 13, 0) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: clamp(72px, 11vw, 132px) 0; }
.hero__content { max-width: 820px; }
.hero h1 {
  color: var(--off-white); margin-bottom: 22px;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08;
  text-shadow: 0 2px 20px rgba(13, 13, 13, 0.55);
}
.hero h1 .accent { color: var(--ocher); }
.hero__tagline {
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 600;
  color: var(--ocher);
  margin: -6px 0 18px;
  text-shadow: 0 1px 14px rgba(13, 13, 13, 0.6);
}
.hero__sub { font-size: 1.18rem; color: var(--off-white); max-width: 520px; margin-bottom: 30px; text-shadow: 0 1px 14px rgba(13, 13, 13, 0.6); }
.hero__note {
  max-width: 520px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--muted-light);
}
.hero__note svg { width: 18px; height: 18px; color: var(--ocher); flex: none; }

/* Page hero (inner pages) */
.page-hero { background: var(--black); color: var(--off-white); padding: clamp(56px, 8vw, 92px) 0 clamp(40px, 5vw, 60px); }
.page-hero--photo {
  position: relative;
  --ov-a: .78; --ov-b: .45; --ov-c: .08;
  background-image:
    linear-gradient(90deg, rgba(13,13,13,var(--ov-a)) 0%, rgba(13,13,13,var(--ov-b)) 48%, rgba(13,13,13,var(--ov-c)) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--ov-light  { --ov-a: .42; --ov-b: .18; --ov-c: .02; }
.page-hero--ov-medium { --ov-a: .58; --ov-b: .30; --ov-c: .05; }
.page-hero--ov-dark   { --ov-a: .82; --ov-b: .55; --ov-c: .18; }
/* Calm, near-uniform dark veil: photo recedes to a subtle texture so the
   dark anchor + headline stay dominant (no busy software banner). */
.page-hero--calm.page-hero--photo {
  background-image:
    linear-gradient(180deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.80) 55%, rgba(13,13,13,.86) 100%),
    var(--hero-img);
  background-position: center 35%;
}
.page-hero--photo h1,
.page-hero--photo .page-hero__sub,
.page-hero--photo .page-hero__intro {
  text-shadow: 0 1px 14px rgba(13,13,13,.55);
}
.page-hero h1 { color: var(--off-white); }
.page-hero__sub { font-size: 1.3rem; font-weight: 500; color: var(--ocher); margin-bottom: 18px; }
.page-hero__intro { font-size: 1.12rem; color: var(--muted-light); max-width: 640px; }
.page-hero .btn-row { margin-top: 30px; }

/* ==========================================================================
   Triangle diagram
   ========================================================================== */
.triangle {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 0.74;
}
.triangle__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.triangle__node {
  position: absolute;
  width: 160px;
  text-align: center;
}
/* Icon sits exactly on each vertex; label radiates outward (top above, base below). */
.triangle__node--top { left: 50%; top: 12%; transform: translate(-50%, calc(-100% + 26px)); }
.triangle__node--left { left: 16%; top: 80%; transform: translate(-50%, -26px); }
.triangle__node--right { left: 84%; top: 80%; transform: translate(-50%, -26px); }
.triangle__center {
  position: absolute;
  left: 50%;
  top: 61%;
  transform: translate(-50%, -50%);
  width: 224px;
  text-align: center;
}
.triangle__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.triangle__icon svg { width: 28px; height: 28px; color: var(--blue); }
.triangle__node h3 { font-size: 1.05rem; margin: 0; }
.triangle__node--top h3 { margin-bottom: 8px; }
.triangle__node--left h3,
.triangle__node--right h3 { margin-top: 8px; }
.triangle__node p { font-size: 0.88rem; color: var(--muted); line-height: 1.45; }
.triangle__center .mark { font-size: 1.4rem; font-weight: 700; color: var(--ocher-dark); margin-bottom: 8px; }
.triangle__center__logo { width: 100%; max-width: 168px; height: auto; margin: 0 auto 8px; display: block; }
.triangle__center p { font-size: 0.9rem; color: var(--muted); }

/* Mobile triangle: stacked but relationship kept via connectors */
.triangle--stack { display: none; }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4d4cc; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; color: var(--ocher); }
.card__icon--soft { background: var(--off-white); border: 1px solid var(--border); }
.card__icon--soft svg { color: var(--blue); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .link-arrow { margin-top: 16px; }
.card--photo { padding-top: 0; overflow: hidden; }
.card__media {
  display: block;
  width: calc(100% + 56px);
  margin: 0 -28px 20px;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Partners / samenwerkingen logo grid */
.partner-card { scroll-margin-top: 100px; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-height: 148px;
  cursor: pointer;
  text-align: center;
  font: inherit;
  color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d4d4cc;
  outline: none;
}
.partner-card__logo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 64px;
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}
.partner-card__name {
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}
.partner-card__cat {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-gray);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Partner detail modal */
.partner-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.partner-modal[hidden] { display: none; }
.partner-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13, 13, 13, 0.55);
}
.partner-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(0,0,0,0.25));
  max-width: 460px; width: 100%;
  padding: 34px 30px 30px;
  max-height: 90vh; overflow-y: auto;
}
.partner-modal__close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: var(--muted);
}
.partner-modal__close:hover { color: var(--black); }
.partner-modal__head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid var(--light-gray);
}
.partner-modal__logo {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; padding: 16px; margin-bottom: 16px;
  background: var(--off-white); border-radius: 16px;
}
.partner-modal__logo[hidden] { display: none; }
.partner-modal__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-modal__dialog h3 { margin: 0 0 12px; font-size: 1.4rem; line-height: 1.2; }
.partner-modal__cat {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(19, 32, 51, 0.08);
  padding: 5px 13px; border-radius: 999px;
}
.partner-modal__field { text-align: left; margin-bottom: 24px; }
.partner-modal__field[hidden] { display: none; }
.partner-modal__label {
  display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
}
.partner-modal__desc { color: #2b2b28; line-height: 1.65; margin: 0; }
.partner-modal__quote {
  background: var(--off-white);
  border-left: 3px solid var(--ocher);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
}
.partner-modal__quote-text {
  margin: 0; color: #2b2b28; font-style: italic; line-height: 1.6;
}
.partner-modal__quote-cite {
  display: block; margin-top: 10px; font-style: normal;
  font-size: 0.86rem; font-weight: 600; color: var(--blue);
}
.partner-modal__cta { width: 100%; justify-content: center; }

/* Service list item (icon + text) */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feature:last-child { border-bottom: none; }
.feature__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 22px; height: 22px; color: var(--ocher-dark); }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* Experience / project logos row */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 40px;
}
.logos-row span {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #36404d;
  white-space: nowrap;
}
.section--dark .logos-row span { color: rgba(242, 242, 238, 0.85); }

/* Banner / CTA strip */
.banner {
  background: var(--black);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.banner__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.banner__icon svg { width: 30px; height: 30px; color: var(--black); }
.banner__text { flex: 1; min-width: 240px; }
.banner__text h3 { color: var(--off-white); margin-bottom: 4px; }
.banner__text .hl { color: var(--ocher); font-weight: 600; }
.banner__text p { color: var(--muted-light); margin: 0; font-size: 0.96rem; }

/* Process timeline */
.steps { display: grid; gap: 0; max-width: 820px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 0 0 36px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--ocher);
  color: var(--ocher-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  z-index: 1;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 52px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(var(--ocher), rgba(226, 164, 0, 0.25));
}
.step__body { padding-top: 6px; }
.step__body h3 { font-size: 1.12rem; margin-bottom: 4px; }
.step__body p { color: var(--muted); margin: 0; }

/* Project cards */
.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--light-gray); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocher-dark);
  background: rgba(226, 164, 0, 0.12);
  padding: 5px 11px;
  border-radius: 999px;
}
.project-card h3 { margin: 0; }
.project-card dl { margin: 0; display: grid; gap: 10px; }
.project-card dt { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #9a9a92; margin-bottom: 2px; }
.project-card dd { margin: 0; font-size: 0.93rem; color: var(--muted); }

/* Columns (positioning / character) */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compare__col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--card-bg);
}
.compare__col--accent { border-color: var(--ocher); border-width: 2px; background: #fff; }
.compare__col h3 { font-size: 1.15rem; }
.compare__col p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.compare__col--accent h3 { color: var(--ocher-dark); }

/* CTA section */
.cta-final { text-align: center; }
.cta-final .btn-row { justify-content: center; margin-top: 28px; }
.cta-final p { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ocher);
  box-shadow: 0 0 0 3px rgba(226, 164, 0, 0.18);
  background: #fff;
}
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__success {
  display: none;
  background: rgba(226, 164, 0, 0.12);
  border: 1px solid var(--ocher);
  color: #6b5200;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form__success.show { display: block; }
.form__notice {
  display: none;
  background: rgba(19, 32, 51, 0.07);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form__notice.show { display: block; }
.form__notice a { color: var(--blue); font-weight: 600; }
.form__error {
  display: none;
  background: rgba(176, 0, 32, 0.08);
  border: 1px solid #b00020;
  color: #8a0019;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form__error.show { display: block; }
.form__error a { color: #8a0019; font-weight: 600; }

.contact-aside .info-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.contact-aside h3 { margin-bottom: 14px; }
.info-line { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.98rem; }
.info-line:last-child { margin-bottom: 0; }
.info-line svg { width: 20px; height: 20px; color: var(--ocher-dark); flex: none; }

/* ==========================================================================
   Checklist
   ========================================================================== */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.check-item__icon {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: rgba(226, 164, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-item__icon svg { width: 17px; height: 17px; color: var(--ocher-dark); }
.check-item p { margin: 0; font-size: 1rem; line-height: 1.5; }

/* Upload (visual) field */
.upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  background: var(--off-white);
  transition: border-color 0.2s ease;
}
.upload:hover { border-color: var(--ocher); }
.upload input[type="file"] { display: block; margin: 12px auto 0; max-width: 100%; }
.upload__icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  border-radius: 50%; background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.upload__icon svg { width: 24px; height: 24px; color: var(--blue); }
.upload__title { font-weight: 600; margin-bottom: 4px; }
.upload__note { font-size: 0.85rem; color: var(--muted); margin: 10px 0 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: var(--muted-light); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 0.9fr 1.1fr;
  gap: 40px;
  padding-bottom: 32px;
}
/* English footer carries a richer column set (brand + 5 columns) per the EN
   content brief; the Dutch footer above is unchanged. */
.footer-grid--en {
  grid-template-columns: 1.4fr 1fr 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 32px;
}
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 260px; }
.footer-col h4 {
  color: var(--off-white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col--nav ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 10px 32px;
}
.footer-col a, .footer-col li { font-size: 0.95rem; color: var(--muted-light); transition: color 0.15s var(--ease); }
.footer-col a:hover { color: var(--ocher); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(242, 242, 238, 0.5);
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  gap: 10px;
  align-items: stretch;
}
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(13, 13, 13, 0.3);
}
.sticky-cta .btn--icon { flex: none; width: 52px; padding: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section-y: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid--en { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Tablet: the photo's bright festival-light band sits right behind the hero
     text, so darken the left side (where the copy lives) more than on desktop. */
  .hero__media::after {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.58) 0%, rgba(13, 13, 13, 0.42) 42%, rgba(13, 13, 13, 0.14) 76%, rgba(13, 13, 13, 0) 100%);
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  :root { --section-y: 40px; }

  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobile nav panel */
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 14px 12px; font-size: 1.05rem; border-radius: 8px; }
  .nav.open a.active::after { display: none; }
  .nav.open .btn { display: inline-flex; margin-top: 10px; justify-content: center; }

  /* Dropdown opens inline (indented) inside the mobile panel */
  .nav.open .nav-dropdown { flex-direction: column; align-items: stretch; }
  .nav.open .nav-dropdown__toggle { display: none; }
  .nav.open .nav-dropdown__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 0 14px; min-width: 0; gap: 2px;
  }
  .nav.open .nav-dropdown__menu a { font-size: 0.98rem; color: var(--muted); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .banner { padding: 28px; }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.44) 55%, rgba(13, 13, 13, 0.6) 100%);
  }

  /* Mobile: keep the forced comma break but scale the H1 down with the viewport
     so "Regie op bereikbaarheid," fits on one line — exactly 2 lines like desktop. */
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2.8rem); }

  /* Mobile: text spans full width, so darken the photo banner evenly top-to-bottom
     instead of left-to-right. Keeps the light/medium/dark levels relative. */
  .page-hero--photo {
    background-image:
      linear-gradient(180deg,
        rgba(13,13,13,var(--ov-a)) 0%,
        rgba(13,13,13,var(--ov-b)) 75%,
        rgba(13,13,13,var(--ov-b)) 100%),
      var(--hero-img-sm, var(--hero-img));
  }

  /* Sticky CTA visible, add bottom breathing room */
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }

  /* Mobile: keep the real triangle but scale it down so it fits and never overlaps */
  .triangle, .triangle[style] {
    display: block !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }
  .triangle__node, .triangle__node[style] { width: 104px !important; }
  .triangle__icon { width: 46px; height: 46px; }
  .triangle__icon svg { width: 24px; height: 24px; }
  .triangle__node h3 { font-size: 0.95rem; }
  .triangle__node--top { transform: translate(-50%, calc(-100% + 23px)); }
  .triangle__node--left { transform: translate(-50%, -23px); }
  .triangle__node--right { transform: translate(-50%, -23px); }
  .triangle__center, .triangle__center[style] { width: 184px !important; }
  .triangle__center__logo { max-width: 132px; }
  .triangle__center p { display: none; }
  .triangle--stack { display: none !important; }

  /* ----------------------------------------------------------------------
     Mobile clean-up (task: calmer phone view, desktop unchanged).
     Text stays in the HTML — only visually hidden/rearranged on phones,
     so SEO copy is preserved.
     ---------------------------------------------------------------------- */

  /* Comfortable, equal side margins on every page */
  .container { padding-left: 28px; padding-right: 28px; }

  /* Homepage hero: extra side breathing room on phones so the big heading,
     tagline and note line don't stick to the left edge. Sections below keep
     the standard 28px container margin; desktop is unaffected. */
  .hero .hero__inner { padding-left: 44px; padding-right: 44px; }

  /* Hide hero action buttons on phones (homepage hero + inner page heroes).
     The closing CTA section (.cta-final) and the sticky bottom CTA stay. */
  .hero .btn-row,
  .page-hero .btn-row { display: none; }

  /* Homepage hero: drop the longer intro sentence on phones.
     Heading, tagline and the check-mark note line stay. */
  .hero__sub { display: none; }

  /* Process timeline (aanpak): calmer, lighter on phones —
     tighter spacing and smaller, subtler step numbers. */
  .step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding-bottom: 24px;
  }
  .step__num {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    border-width: 1px;
  }
  .step:not(:last-child)::before {
    left: 19px;
    top: 38px;
  }
  .step__body { padding-top: 4px; }

  /* Card grids: a bit more space between stacked cards so the column of
     project/service/audience cards reads as a calm list, not a tight stack. */
  .grid-2, .grid-3, .grid-4 { gap: 20px; }

  /* Project cards: slightly tighter inner padding and meta spacing so each
     card feels lighter on a narrow screen. */
  .project-card__body { padding: 20px; gap: 10px; }
  .project-card dl { gap: 8px; }

  /* Partner / samenwerkingen grid: a tidy 2-up grid of smaller tiles instead
     of one stretched logo per row — fewer cramped, oversized rows. */
  .partner-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .partner-card { min-height: 120px; padding: 18px 14px; gap: 10px; }
  .partner-card__logo { min-height: 52px; }
  .partner-card__logo img { max-height: 52px; }

  /* Footer: drop to a single column with generous spacing and unstack the
     2-column nav list, which is badly cramped inside a narrow phone column. */
  .footer-grid, .footer-grid--en { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--nav ul {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 12px;
  }

  /* Forms (contact + plancheck): lighter card padding and row spacing so the
     fields breathe instead of filling the whole screen edge-to-edge. */
  .form { padding: 24px; }
  .field { margin-bottom: 16px; }

  /* Homepage logo strip: smaller, more widely spaced logos with a softer fade
     so the wheel reads as a calm ribbon instead of cramped, oversized logos. */
  .logo-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  }
  .logo-marquee__item { padding: 0 24px; }
  .logo-marquee__item img { height: 40px; max-width: 130px; }

  /* Homepage quote band on phones: a swipeable carousel showing up to two
     quotes per slide, each clamped to two lines. Mirrors the desktop carousel
     idea but stays compact instead of a tall stack. */
  .quote-marquee {
    margin-top: 20px;
    overflow-x: auto; overflow-y: hidden;
    -webkit-mask-image: none; mask-image: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .quote-marquee::-webkit-scrollbar { display: none; }
  .quote-marquee__track,
  .quote-marquee--static .quote-marquee__track {
    display: flex; flex-wrap: nowrap; width: max-content;
    justify-content: flex-start; row-gap: 0;
    padding-inline: 8vw;
    animation: none !important; transform: none !important;
  }
  .quote-marquee__slide {
    display: flex; flex-direction: column; justify-content: center; gap: 18px;
    flex: 0 0 84vw; box-sizing: border-box; padding-inline: 12px;
    scroll-snap-align: center;
  }
  .quote-marquee__slide--dup { display: none !important; }
  .quote-marquee__item { width: 100%; padding: 0; border-left: none; }
  .quote-marquee__text {
    font-size: 0.95rem;
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero__inner { padding: 60px 0; }
  /* Even tighter triangle so it never overflows narrow phones */
  .triangle, .triangle[style] { max-width: 320px !important; }
  .triangle__node, .triangle__node[style] { width: 90px !important; }
  .triangle__node h3 { font-size: 0.88rem; }
  .triangle__icon { width: 42px; height: 42px; }
  .triangle__icon svg { width: 22px; height: 22px; }
  .triangle__node--top { transform: translate(-50%, calc(-100% + 21px)); }
  .triangle__node--left { transform: translate(-50%, -21px); }
  .triangle__node--right { transform: translate(-50%, -21px); }
  .triangle__center, .triangle__center[style] { width: 168px !important; }
  .triangle__center__logo { max-width: 120px; }

  /* Portrait phones: a 2-up partner grid gets cramped with longer logos/names,
     so give each logo its own full-width row. Large phones / small tablets
     (481-768px) keep the calmer 2-up grid set above. */
  .partner-grid { grid-template-columns: 1fr; }

  /* Smallest phones: a touch smaller logos and quotes so neither element
     feels oversized on a narrow portrait screen. */
  .logo-marquee__item { padding: 0 18px; }
  .logo-marquee__item img { height: 36px; max-width: 112px; }
  .quote-marquee__slide { flex-basis: 86vw; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Project cards as links (CMS) + missing-image placeholders
   ========================================================================== */
.project-card--link { text-decoration: none; color: inherit; position: relative; }
.project-card__media--empty {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, #1d2f49 100%);
}
.project-card__placeholder {
  font-size: 2.4rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(242, 242, 238, 0.85);
}
.project-card__logo {
  position: absolute; left: 16px; bottom: 16px;
  background: #fff; border-radius: 10px; padding: 8px 10px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center;
  max-width: 46%;
}
.project-card__media { position: relative; }
.project-card__logo img { max-height: 30px; width: auto; }
.project-card__body p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.project-card .link-arrow { margin-top: auto; padding-top: 6px; }

/* ==========================================================================
   Project detail page
   ========================================================================== */
.project-hero__back { color: var(--ocher); margin-bottom: 22px; }
.project-hero__head { display: flex; align-items: center; gap: 20px; }
.project-hero__logo {
  flex: none; width: 76px; height: 76px; border-radius: 14px; background: #fff;
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.project-hero__logo img { max-width: 100%; max-height: 100%; width: auto; }
.project-hero .page-hero__sub { margin-bottom: 8px; }

.project-meta { display: flex; flex-wrap: wrap; gap: 14px 36px; margin-top: 24px; }
.project-meta__item { font-size: 0.98rem; color: var(--muted-light); }
.project-meta__item strong {
  display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ocher); margin-bottom: 2px;
}

.project-detail { padding-top: clamp(40px, 5vw, 56px); }
.project-detail__cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: clamp(36px, 5vw, 60px); }
.project-detail__cover img { width: 100%; max-height: 520px; object-fit: cover; }

/* Intro: capped reading width above the fact cards. */
.project-detail__intro { max-width: 720px; margin-bottom: clamp(32px, 4.5vw, 52px); }
.project-detail__intro h2 { margin-bottom: 14px; }
.project-detail__intro p { color: var(--ink); }
.project-detail__intro p + p { margin-top: 12px; }
/* Small ocher kickers for Vraagstuk / Oplossing within the intro column. */
.project-detail__subhead {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ocher-dark);
  margin-top: clamp(24px, 3vw, 32px); margin-bottom: 8px;
}

/* Facts: equal-height cards side by side — balanced, compact, strak. */
.project-detail__facts {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.fact-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-top: 3px solid var(--ocher);
  border-radius: var(--radius); padding: 22px 24px 24px;
}
.fact-card h3 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ocher-dark); margin-bottom: 12px;
}
.fact-card p,
.project-detail__body { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* Bulleted rich text — compact list with subtle ocher markers. */
.rich-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rich-list li {
  position: relative; padding-left: 18px;
  color: var(--muted); font-size: 0.95rem; line-height: 1.5;
}
.rich-list li::before {
  content: ""; position: absolute; left: 2px; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ocher); transform: translateY(-50%);
}
.project-detail__intro .rich-list { gap: 8px; margin-top: 4px; }
.project-detail__intro .rich-list li { color: var(--ink); font-size: 1rem; }

/* Logo marquee (auto-scrolling wheel of project logos) */
.logo-wheel { overflow: hidden; }
.logo-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex; width: max-content;
  animation: logo-scroll 38s linear infinite;
}
@media (hover: hover) {
  .logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
}
.logo-marquee__item {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(24px, 4vw, 52px);
}
.logo-marquee__link { display: flex; align-items: center; justify-content: center; }
/* Interactive (grab/swipe) marquees: never scroll the page horizontally on a
   drag, no text/image selection while dragging, grab cursor on desktop. */
.marquee--interactive {
  touch-action: pan-y; cursor: grab;
  -webkit-user-select: none; user-select: none;
}
.marquee--interactive.is-grabbing { cursor: grabbing; }
.marquee--interactive img { -webkit-user-drag: none; user-drag: none; }
.logo-marquee__item img {
  height: 52px; width: auto; max-width: 170px; object-fit: contain;
  filter: grayscale(1); opacity: 0.62;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.logo-marquee__item img:hover { filter: grayscale(0); opacity: 1; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

/* Quote band — second marquee under the logo-wheel, scrolling the opposite way. */
.quote-marquee {
  overflow: hidden; width: 100%; margin-top: 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.quote-marquee__track {
  display: flex; width: max-content;
  animation: quote-scroll 52s linear infinite;
}
@media (hover: hover) {
  .quote-marquee:hover .quote-marquee__track { animation-play-state: paused; }
}
/* 3 or fewer quotes: stand still, centered, no duplication. */
.quote-marquee--static { -webkit-mask-image: none; mask-image: none; }
.quote-marquee--static .quote-marquee__track {
  animation: none; width: 100%;
  justify-content: center; flex-wrap: wrap; row-gap: 20px;
}
/* Slides group up to two quotes; they collapse out of the layout on desktop
   (display:contents) so the marquee/static band behaves exactly as before, and
   become the swipe unit only on phones (see the mobile block). */
.quote-marquee__slide { display: contents; }
.quote-marquee__item {
  flex: 0 0 auto; box-sizing: border-box;
  width: min(420px, 80vw); margin: 0; padding: 0 clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--light-gray);
}
.quote-marquee__text {
  margin: 0; font-size: 0.98rem; line-height: 1.5; color: var(--blue);
  font-style: italic;
}
.quote-marquee__text::before { content: "\201C"; }
.quote-marquee__text::after { content: "\201D"; }
.quote-marquee__cite {
  margin-top: 10px; font-size: 0.82rem; font-weight: 600;
  color: var(--ocher); font-style: normal;
}
.quote-marquee__source {
  display: block; margin-top: 2px; font-size: 0.78rem; font-weight: 600;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em;
}
@keyframes quote-scroll {
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .quote-marquee__track { animation: none; }
}

.media-band { padding: 0; }
.media-band__inner {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  margin: -56px 0 0; position: relative; z-index: 2;
}
.media-band--flat { padding: 0; }
.media-band--flat .media-band__inner { margin-top: 0; }
.media-band__inner img {
  display: block; width: 100%; aspect-ratio: 16 / 7; object-fit: cover;
}
@media (max-width: 768px) {
  .media-band__inner { margin-top: -40px; }
  .media-band__inner img { aspect-ratio: 16 / 10; }
}

.project-quote {
  margin: 40px 0 0; padding: 28px clamp(24px, 4vw, 40px);
  background: var(--light-gray); border-left: 4px solid var(--ocher);
  border-radius: var(--radius);
}
.project-quote__text {
  margin: 0; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5;
  color: var(--blue); font-style: italic;
}
.project-quote__text::before { content: "\201C"; }
.project-quote__text::after { content: "\201D"; }
.project-quote__cite {
  margin-top: 14px; font-size: 0.92rem; font-weight: 600; color: var(--black);
}

.project-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 32px;
}
.project-gallery__item { border-radius: var(--radius); overflow: hidden; background: var(--light-gray); }
.project-gallery__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s var(--ease); }
.project-gallery__item:hover img { transform: scale(1.04); }
.project-gallery__item--lead { grid-column: 1 / -1; }
.project-gallery__item--lead img { aspect-ratio: 16/9; max-height: 520px; }

@media (max-width: 768px) {
  .project-hero__head { gap: 14px; }
  .project-hero__logo { width: 60px; height: 60px; }
}

/* --------------------------------------------------------------------------
   Landing pages (SEO / kennis) + Kennisbank
   -------------------------------------------------------------------------- */
.btn--light { background: var(--off-white); color: var(--black); border-color: var(--off-white); }
.btn--light:hover { background: #fff; }

.breadcrumb { font-size: 0.9rem; margin-bottom: 14px; color: rgba(242,242,238,0.8); }
.breadcrumb a { color: rgba(242,242,238,0.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--ocher); }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

.landing-preview-bar {
  background: var(--ocher); color: var(--black); text-align: center;
  padding: 10px 16px; font-weight: 500; font-size: 0.95rem;
}

/* Landing content blocks — editorial two-column layout with side kicker/heading
   and a readable body, alternating section backgrounds + panel/accent variants. */
.landing-section { padding-top: clamp(40px, 6vw, 68px); padding-bottom: clamp(40px, 6vw, 68px); }
.landing-block {
  max-width: 1040px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}
.landing-block__head { position: relative; }
.landing-block__head .kicker { margin-bottom: 10px; }
.landing-block__head h2 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  line-height: 1.25; margin: 0; color: var(--ink);
}
.landing-block__body { color: var(--ink); }
.landing-block__body p { color: var(--ink); line-height: 1.8; margin-bottom: 14px; font-size: 1.02rem; }
.landing-block__body p:last-child { margin-bottom: 0; }
.landing-block__body .rich-list { gap: 12px; }
.landing-block__body .rich-list li { color: var(--ink); font-size: 1.02rem; line-height: 1.6; padding-left: 22px; }
.landing-block__body .rich-list li::before { top: 0.7em; width: 6px; height: 6px; }

/* Panel variant — body sits on a clean white card surface. */
.landing-block--panel .landing-block__body {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.section--gray .landing-block--panel .landing-block__body { box-shadow: none; }

/* Accent variant — highlighted practical-example callout. */
.landing-block--accent .landing-block__body {
  background: rgba(226, 164, 0, 0.07);
  border: 1px solid rgba(226, 164, 0, 0.28);
  border-left: 3px solid var(--ocher);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
}

/* In-block CTA — sits neatly under the "Hoe MovendiuM helpt" text. */
.landing-block__cta {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid var(--border);
}

@media (max-width: 760px) {
  .landing-block { grid-template-columns: 1fr; gap: 16px; }
  .landing-block__head h2 { font-size: 1.3rem; }
  .landing-block__cta .btn { width: 100%; justify-content: center; }
}

.faq-list { max-width: 820px; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 4px 20px; transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: 0 6px 24px rgba(13,13,13,0.06); }
.faq-item summary {
  cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--ocher); font-weight: 400;
  flex-shrink: 0; transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item__body { padding: 0 0 18px; color: var(--ink); line-height: 1.7; }
.faq-item__body p { margin-bottom: 8px; }

.landing-related { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; max-width: 820px; }
.landing-related a {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
  color: var(--blue); text-decoration: none;
}
.landing-related a:hover { color: var(--ocher); }

.kennis-group { margin-bottom: 48px; }
.kennis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.kennis-card {
  display: flex; flex-direction: column; gap: 10px; background: #fff;
  border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  text-decoration: none; color: var(--black); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kennis-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,13,13,0.08); }
.kennis-card h3 { font-size: 1.15rem; margin: 0; }
.kennis-card p { color: var(--ink); font-size: 0.95rem; line-height: 1.6; margin: 0; flex-grow: 1; }
.kennis-card__cta {
  display: inline-flex; align-items: center; gap: 6px; color: var(--ocher);
  font-weight: 600; font-size: 0.9rem;
}
.kennis-card__cta svg { width: 16px; height: 16px; }

/* ==========================================================================
   Traffic Chart partnership page
   ========================================================================== */
.kicker--light { color: var(--ocher); }
.page-hero__note {
  margin-top: 22px;
  max-width: 620px;
  font-size: 0.9rem;
  color: var(--muted-light);
  padding-left: 14px;
  border-left: 2px solid var(--ocher);
}

.tc-split { align-items: start; gap: 48px; }
.tc-iconcards { display: grid; gap: 12px; }
.tc-iconcard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 500;
}
.tc-iconcard__dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ocher);
}

.card__num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ocher);
  margin-bottom: 10px;
}

.tc-roles { gap: 28px; align-items: stretch; }
.card--role { display: flex; flex-direction: column; }
.card--role-accent { border-color: var(--ocher); border-width: 2px; }
.tc-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.tc-list li { position: relative; padding-left: 26px; font-size: 0.96rem; }
.tc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--ocher);
  border-bottom: 2px solid var(--ocher);
  transform: rotate(-45deg);
}
.tc-keyline {
  margin-top: 36px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}
.tc-keyline span { color: var(--ocher); }

.tc-usegrid .card { height: 100%; }

.tc-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tc-tile {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--off-white);
}
.tc-tile__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--light-gray) 0, var(--light-gray) 12px, #ebebe5 12px, #ebebe5 24px);
  color: var(--blue);
}
.tc-tile__media svg { width: 54px; height: 54px; opacity: 0.45; }
.tc-tile__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--off-white);
  padding: 5px 10px;
  border-radius: 999px;
}
.tc-tile figcaption { padding: 20px 22px 24px; }
.tc-tile figcaption h3 { margin-bottom: 8px; }
.tc-tile__media--photo {
  padding: 0;
  background: var(--light-gray);
  overflow: hidden;
}
.tc-tile__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
a.tc-tile__media--photo { cursor: pointer; }
.tc-tile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.tc-tile__links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
}
.tc-tile__links a:hover { color: var(--ocher); }

.tc-nuance { max-width: 760px; }

.tc-project-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ocher);
  border-radius: 14px;
}
.tc-project-block__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--light-gray);
  color: var(--blue);
}
.tc-project-block__icon svg { width: 24px; height: 24px; }
.tc-project-block h3 { margin-bottom: 6px; }
.tc-project-block p { margin-bottom: 12px; }

.card__note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.link-arrow--sm { font-size: 0.9rem; margin-top: 8px; }

@media (max-width: 760px) {
  .tc-split { gap: 28px; }
  .tc-tiles { grid-template-columns: 1fr; }
  .tc-keyline { font-size: 1.15rem; }
}

.lang-switch { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-size: 0.85rem; font-weight: 600; }
.lang-switch a { color: var(--muted, #6b6b66); text-decoration: none; padding: 2px 4px; }
.lang-switch a.active { color: var(--black); }
