/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-deep-green:    #1a3a2e;
  --color-navy:          #1a2355;
  --color-amber:         #8a6a3e;
  --color-sage:          #6e8060;
  --color-warm-white:    #f5f0eb;
  --color-white:         #ffffff;
  --color-overlay-green: rgba(106, 128, 90, 0.45);
  --color-overlay-deep:  rgba(26, 58, 46, 0.74);
  --color-teal-link:     #3d7a6e;
  --color-sage-text:     #4f6145;

  --shadow-card:   0 4px 24px rgba(26, 58, 46, 0.12);
  --shadow-circle: 0 2px 20px rgba(26, 58, 46, 0.25);
  --border-circle: 4px solid var(--color-white);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--color-warm-white);
  color: var(--color-navy);
  font-family: 'Source Serif 4', serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5%, 58px);
}

/* ============================================================
   STICKY DIAGONAL LOGO BLOCK
   ============================================================ */
.header-logo-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 96px;
  background: var(--color-deep-green);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  z-index: 100;
  padding: 0 0 0 28px;
  display: flex;
  align-items: center;
  pointer-events: all;
  filter: drop-shadow(4px 6px 18px rgba(0, 0, 0, 0.28));
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 74px;
  line-height: 1;
  color: var(--color-amber);
  padding-right: 14px;
  flex-shrink: 0;
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: center bottom;
  transition: color 250ms ease;
}

.header-logo-block:hover .logo-mark { color: var(--color-white); }

.logo-divider {
  width: 1px;
  height: 34px;
  background: rgba(245, 240, 235, 0.22);
  flex-shrink: 0;
  margin-right: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 1px;
}

.logo-primary {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4.5px;
  color: rgba(245, 240, 235, 0.42);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.logo-secondary {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-white);
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 10px;
  font-style: italic;
  color: rgba(245, 240, 235, 0.28);
  display: block;
  margin-top: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0 40px 0 374px;
  z-index: 99;
  background: var(--color-white);
  box-shadow: 0 1px 24px rgba(26, 58, 46, 0.07);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--color-sage-text);
  text-transform: uppercase;
  padding: 0 10px;
  transition: color 200ms linear;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-amber);
  font-weight: 700;
}

.nav-sep {
  color: rgba(26, 58, 46, 0.6);
  font-size: 11px;
  user-select: none;
  line-height: 1;
  padding: 0 2px;
}

.nav-contact {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
  margin-left: 20px;
  padding: 9px 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  background: var(--color-amber);
  transition: background 220ms ease, transform 150ms ease;
}

.nav-contact:hover {
  background: var(--color-deep-green);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background-color: #3a4b25;
  background-image: url('images/DSC_9495.jpg');
  background-size: auto 115%;
  background-position: right 15%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(58, 75, 37, 0.96) 0%,
    rgba(72, 90, 48, 0.82) 22%,
    rgba(95, 115, 68, 0.58) 42%,
    rgba(106, 128, 90, 0.32) 62%,
    rgba(106, 128, 90, 0.10) 80%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 12vh;
  padding-left: max(5%, calc((100% - 1160px) / 2 + 5%));
  max-width: 72%;
}

.hero-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-kicker {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 20px;
}

.hero-line-1 {
  font-size: clamp(42px, 5.8vw, 88px);
  display: block;
}

.hero-line-2 {
  font-size: clamp(30px, 4.2vw, 62px);
  display: block;
  opacity: 0.88;
}

.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 18px;
  max-width: 540px;
}

.hero-divider {
  width: 50%;
  height: 2px;
  background: var(--color-white);
  margin-top: 22px;
  transform-origin: left center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 15px 34px;
  background: var(--color-amber);
  color: var(--color-white);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 250ms ease, transform 150ms ease, box-shadow 250ms ease;
}

.btn-primary:hover {
  background: var(--color-deep-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 58, 46, 0.3);
}

.btn-primary:active { transform: translateY(0); }

/* Circle portrait */
.circle-portrait {
  position: absolute;
  right: 3%;
  bottom: 7%;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: var(--border-circle);
  background-image: url('images/Marco2-5683.jpeg');
  background-size: cover;
  background-position: center 15%;
  box-shadow: var(--shadow-circle);
  z-index: 2;
  display: block;
  animation: portrait-float 3.2s ease-in-out infinite;
}

@keyframes portrait-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

.linkedin-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0077b5;
  border: 2.5px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background 200ms ease;
}

.linkedin-badge:hover { background: #005e8a; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  display: block;
  transition: all 350ms ease;
}

.scroll-indicator .dot.active {
  width: 30px;
  background: var(--color-white);
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 48px; }

.amber-line {
  width: 60px;
  height: 2px;
  background: var(--color-amber);
  margin-bottom: 22px;
}

.amber-line-center { margin-left: auto; margin-right: auto; }

.section-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header .subkop {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--color-navy);
}

/* ============================================================
   OVER MARCO
   ============================================================ */
.over-marco {
  padding: 104px 0 96px;
  background: var(--color-warm-white);
  scroll-margin-top: 72px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: stretch;
}

.body-text p {
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 20px;
  color: var(--color-navy);
}

.kernwaarden {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.kw-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.kw-title {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-navy);
  text-transform: uppercase;
}

.kw-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--color-sage-text);
  line-height: 1.5;
}

.over-marco-foto-wrap {
  position: relative;
  min-height: 400px;
}

.over-marco-foto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   PARTNER BALK
   ============================================================ */
.partner-balk {
  background: var(--color-warm-white);
  border-top: 1px solid rgba(26, 58, 46, 0.07);
  border-bottom: 1px solid rgba(26, 58, 46, 0.07);
  padding: 16px 0;
  overflow: hidden;
}

.partner-track-wrapper {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-scroll 40s linear infinite;
}

.partner-balk:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo,
.partner-logo-lid {
  display: inline-flex;
  align-items: center;
  padding: 2px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(26, 58, 46, 0.38);
  white-space: nowrap;
  transition: color 260ms ease;
  cursor: default;
}

.partner-logo:hover,
.partner-logo-lid:hover {
  color: var(--color-deep-green);
}

.partner-logo img,
.partner-logo-lid img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.42);
  transition: filter 300ms ease;
}

.partner-logo--sq img {
  height: 52px;
}
.partner-logo--interakt img {
  height: 44px;
}
.partner-logo-lid img {
  height: 40px;
}
.partner-logo--broodfonds img {
  height: 52px;
}

.partner-logo:hover img,
.partner-logo-lid:hover img {
  filter: grayscale(0%) opacity(0.88);
}

.partner-dot {
  color: rgba(138, 106, 62, 0.35);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.partner-lid-label {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(138, 106, 62, 0.65);
  margin-right: 7px;
}

@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  position: relative;
  padding: 104px 0 96px;
  background-image: url('images/Marco2-5690.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  scroll-margin-top: 72px;
}

.diensten-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-deep);
}

.diensten-inner { position: relative; z-index: 2; }

.diensten .section-header h2,
.diensten .section-header .subkop { color: var(--color-warm-white); }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.diensten-kaart {
  background: rgba(245, 240, 235, 0.055);
  border: 1px solid rgba(245, 240, 235, 0.12);
  padding: 40px 36px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  transition: background 300ms ease,
              transform  300ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 300ms ease;
  cursor: default;
}

.diensten-kaart:hover {
  background: rgba(138, 106, 62, 0.17);
  transform: translateY(-4px);
  border-color: rgba(138, 106, 62, 0.38);
}

.diensten-kaart--breed {
  grid-column: 1 / -1;
}

.kaart-nr {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-amber);
  display: block;
  margin-bottom: 14px;
}

.diensten-kaart h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-warm-white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kaart-signaal {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(245, 240, 235, 0.68);
  margin-bottom: 16px;
}

.kaart-body {
  font-family: 'Source Serif 4', serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(245, 240, 235, 0.84);
}

/* ============================================================
   VISIE
   ============================================================ */
.visie {
  background: var(--color-deep-green);
  padding: 120px 0;
  text-align: center;
  scroll-margin-top: 72px;
}

.visie-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visie-quote {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 600;
  color: var(--color-warm-white);
  line-height: 1.55;
  max-width: 840px;
  margin-bottom: 28px;
  padding: 0 40px;
}

.quote-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 130px;
  color: rgba(138, 106, 62, 0.25);
  line-height: 0;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.quote-open { top: 0.55em; left: 0; }
.quote-close { bottom: -0.05em; right: 0; }

.visie-quote-words { position: relative; z-index: 1; }

.q-word { display: inline-block; margin-right: 0.28em; }

.visie-attr {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 52px;
}

.visie-tekst {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  line-height: 1.88;
  color: rgba(245, 240, 235, 0.78);
  max-width: 700px;
}

.loopbaan-linkedin-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-amber);
  border-bottom: 1px solid var(--color-amber);
  padding-bottom: 2px;
  transition: opacity 220ms ease;
}
.loopbaan-linkedin-link:hover { opacity: 0.7; }

/* ============================================================
   THOUGHT LEADERSHIP
   ============================================================ */
.thought-leadership {
  background: var(--color-white);
  padding: 104px 0 96px;
  scroll-margin-top: 72px;
}

.tl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.tl-kaart {
  border: 1px solid rgba(26, 58, 46, 0.1);
  padding: 32px 28px;
  border-radius: 2px;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 14px;
  transition: box-shadow 300ms ease,
              transform   300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Essaykaarten hebben een extra "reageren"-regel: alle rijen vast op
   inhoud (geen flexibele rij), zodat de afstand tussen tekst en
   "reageren" én tussen "reageren" en de datum altijd gelijk is,
   ongeacht de lengte van de introtekst. */
.tl-kaart:has(.tl-reageren) {
  grid-template-rows: auto auto auto auto auto auto;
}

.tl-spacer {
  display: block;
}

.tl-kaart:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.tl-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  align-self: start;
  justify-self: start;
}

.tl-label-podcast { background: var(--color-deep-green); color: var(--color-white); }
.tl-label-artikel { background: var(--color-warm-white); color: var(--color-navy); }
.tl-label-essay   { background: var(--color-amber);      color: var(--color-white); }

.tl-titel {
  font-family: 'Source Serif 4', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.45;
  align-self: start;
}

.tl-bron {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-sage);
}

.tl-link {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-amber);
  text-transform: uppercase;
  transition: color 200ms ease;
  align-self: start;
}

.tl-link:hover { color: var(--color-deep-green); }

.tl-link-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  justify-self: start;
}

/* ============================================================
   ESSAY UITKLAPBAAR
   ============================================================ */
.essay-uitklapbaar {
  display: none;
  margin-top: 48px;
  padding-top: 56px;
  border-top: 1px solid rgba(26, 35, 85, 0.1);
}
.essay-uitklapbaar.actief { display: block; }

.essay-lezer {
  max-width: 680px;
}

.essay-header {
  margin-bottom: 48px;
}

.essay-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-amber);
  margin-bottom: 16px;
}

.essay-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.essay-subtitel {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: rgba(26, 35, 85, 0.65);
  margin-bottom: 8px;
}

.essay-datum {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26, 35, 85, 0.4);
}

.essay-lezer p {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(26, 35, 85, 0.82);
  margin-bottom: 24px;
}

.essay-lezer h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-top: 48px;
  margin-bottom: 20px;
}

.essay-noot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 35, 85, 0.1);
}

.essay-noot p {
  font-size: 14px !important;
  color: rgba(26, 35, 85, 0.5) !important;
  line-height: 1.7 !important;
}

.essay-noot a {
  color: var(--color-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.essay-citaat {
  border-left: 3px solid var(--color-amber);
  margin: 28px 0;
  padding: 16px 24px;
  background: rgba(138, 106, 62, 0.05);
  border-radius: 0 2px 2px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-navy);
}

.essay-sluiten-knop {
  margin-top: 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26, 35, 85, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 200ms ease;
}
.essay-sluiten-knop:hover { color: var(--color-navy); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  padding: 120px 0;
  background-color: rgb(26, 58, 46);
  background-image: url('images/Marco2-5693.jpeg');
  background-size: auto 115%;
  background-position: -30px center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  scroll-margin-top: 72px;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 58, 46, 0.68) 0%,
    rgba(26, 58, 46, 0.72) 26%,
    rgba(26, 58, 46, 0.96) 46%,
    rgba(26, 58, 46, 1.00) 54%
  );
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}

.contact-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 700;
  color: var(--color-white);
}

.contact-divider {
  width: 60px;
  height: 2px;
  background: var(--color-white);
  margin: 18px auto 36px;
  transform-origin: center;
}

.contact-tekst {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(245, 240, 235, 0.88);
  max-width: 580px;
  margin-bottom: 52px;
}

.contact-opties {
  display: flex;
  gap: 52px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}

.contact-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-sage);
}

.contact-waarde {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: var(--color-white);
  transition: opacity 200ms ease;
}

.contact-waarde:hover { opacity: 0.7; }

.contact-btn { margin-top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-link { font-size: 10px; padding: 0 7px; letter-spacing: 1.5px; }
}

@media (max-width: 900px) {
  .grid-2col { grid-template-columns: 1fr; gap: 48px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .main-nav { left: 0; top: auto; bottom: 0; height: 55px; justify-content: center; padding: 0 20px; background: var(--color-white); border-top: 1px solid rgba(0,0,0,0.06); box-shadow: none; border-bottom: none; }
  .nav-contact { display: none; }
  .header-logo-block { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); height: 68px; padding: 0 0 0 20px; filter: none; }
  .logo-mark { font-size: 42px; transform: none; }
  .logo-secondary { font-size: 15px; letter-spacing: 1.5px; }
  .logo-sub { display: none; }
  .hero { background-attachment: scroll; background-size: cover; background-position: center 20%; background-color: transparent; }
  .diensten, .contact { background-attachment: scroll; }
}

@media (min-width: 1600px) {
  .circle-portrait { right: calc((100% - 1160px) / 2); }
  .hero-content { padding-left: 6%; }
}

@media (min-width: 1921px) {
  .hero {
    background-size: 55vw auto;
    background-position: right 20%;
    background-attachment: scroll;
    background-color: #3a4b25;
  }
}

@media (max-width: 600px) {
  .hero-content { max-width: 92%; }
  .circle-portrait { width: 110px; height: 110px; right: 4%; bottom: 14%; }
  .contact-opties { flex-direction: column; gap: 28px; }
  .kernwaarden { grid-template-columns: 1fr; gap: 28px; }

}

@media (max-width: 480px) {
  .main-nav { padding: 0; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; }
  .main-nav::-webkit-scrollbar { display: none; }
  .nav-links { padding: 0 12px; flex-shrink: 0; }
  .nav-sep { display: none; }
  .nav-link { font-size: 9px; letter-spacing: 0; padding: 0 10px; white-space: nowrap; }
}

/* ============================================================
   ACCESSIBILITY & UX QUALITY
   ============================================================ */

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  padding: 10px 20px;
  background: var(--color-deep-green);
  color: var(--color-white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 9999;
  border-radius: 2px;
  transition: top 150ms ease;
}
.skip-link:focus { top: 20px; }

/* Visible focus rings — uses amber for brand consistency */
:focus-visible {
  outline: 3px solid var(--color-amber);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav-link:focus-visible,
.nav-contact:focus-visible {
  outline-color: var(--color-navy);
}

/* Reduced motion — respect user OS preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .circle-portrait { animation: none; }
}

/* Mobile bottom nav safe padding */
@media (max-width: 900px) {
  body { padding-bottom: 55px; }
}

/* ============================================================
   THOUGHT LEADERSHIP — SUBSECTIES & PODCAST
   ============================================================ */
.tl-intro {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(26, 35, 85, 0.72);
  max-width: 780px;
  margin-bottom: 56px;
}

.tl-sub { margin-bottom: 64px; }
.tl-sub:last-child { margin-bottom: 0; }

.tl-sub-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.tl-sub-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-amber);
  white-space: nowrap;
}

.tl-sub-line {
  flex: 1;
  height: 1px;
  background: rgba(26, 58, 46, 0.12);
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.podcast-kaart {
  border: 1px solid rgba(26, 58, 46, 0.1);
  padding: 32px 28px 28px;
  border-radius: 2px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
  transition: box-shadow 300ms ease;
}

.podcast-kaart:hover { box-shadow: var(--shadow-card); }

.podcast-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tl-omschrijving {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(26, 35, 85, 0.65);
  margin-top: 8px;
}

.tl-reageren {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(26, 35, 85, 0.5);
  margin-bottom: 18px;
}

.tl-reageren a {
  color: var(--color-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.podcast-intro {
  font-family: 'Source Serif 4', serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(26, 35, 85, 0.72);
}

.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.spotify-embed iframe {
  display: block;
  border: 0;
  border-radius: 12px;
}

.spotify-facade {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 152px;
  padding: 0 24px;
  background: #1a3a2e;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease;
}

.spotify-facade:hover,
.spotify-facade:focus-visible { background: #204a3a; }

.spotify-facade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1ed760;
  color: #1a3a2e;
  font-size: 15px;
  flex-shrink: 0;
  padding-left: 3px;
}

.spotify-facade-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spotify-facade-title {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-warm-white);
}

.spotify-facade-consent {
  font-family: 'Source Serif 4', serif;
  font-size: 12px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(245, 240, 235, 0.55);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-deep-green);
  padding: 28px 0;
  text-align: center;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.55);
}

.footer-sub {
  font-family: 'Source Serif 4', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(245, 240, 235, 0.35);
}

.footer-credits {
  font-family: 'Source Serif 4', serif;
  font-size: 10px;
  font-style: italic;
  color: rgba(245, 240, 235, 0.22);
  margin-top: 6px;
}

.footer-privacy-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.4);
  border-bottom: 1px solid rgba(245, 240, 235, 0.25);
  transition: color 220ms ease, border-color 220ms ease;
}

.footer-privacy-link:hover { color: rgba(245, 240, 235, 0.75); border-color: rgba(245, 240, 235, 0.5); }

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-links-row .footer-privacy-link {
  margin-top: 0;
  font-size: 8px;
}

.footer-links-sep {
  font-size: 8px;
  color: rgba(245, 240, 235, 0.25);
}

.footer-privacy-link--btn {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 235, 0.25);
  font: inherit;
  cursor: pointer;
  padding: 0;
}

/* ============================================================
   COOKIEBANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5%, 58px);
  background: var(--color-deep-green);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner-text {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 235, 0.88);
  max-width: 640px;
  flex: 1 1 320px;
}

.cookie-banner-acties {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  min-height: 44px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: var(--color-amber);
  color: var(--color-white);
  transition: background 220ms ease, transform 150ms ease;
}

.cookie-banner-btn:hover { background: var(--color-white); color: var(--color-deep-green); transform: translateY(-1px); }

.cookie-banner-btn--ghost {
  background: none;
  color: rgba(245, 240, 235, 0.7);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.cookie-banner-btn--ghost:hover { background: rgba(245, 240, 235, 0.08); color: var(--color-white); transform: none; }

@media (max-width: 900px) {
  /* Boven de vaste onderste mobiele navigatiebalk (55px) laten zweven */
  .cookie-banner { bottom: 55px; }
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-acties { justify-content: center; }
}

/* ============================================================
   PRIVACYPAGINA
   ============================================================ */
.privacy-section { padding-top: 176px; }

.footer-linkedin {
  display: inline-block;
  margin-top: 12px;
  color: rgba(245, 240, 235, 0.35);
  transition: color 250ms ease;
}

.footer-linkedin:hover { color: #0a66c2; }

.contact-linkedin-icon {
  display: inline-flex;
  align-items: center;
  color: var(--color-teal-link);
  transition: color 200ms ease;
}

.contact-linkedin-icon:hover { color: #0a66c2; }
