/* ─────────────────────────────────────────────────────────────
   Jan-Siep van den Bos · Demo design system
   Stijl B — Strak modern dagvoorzitter
   Navy + warm orange + Inter
   ───────────────────────────────────────────────────────────── */

:root {
  /* Kleuren */
  --navy-deep: #0F1B2D;
  --navy: #1A2A4A;
  --navy-mid: #243454;
  --navy-soft: rgba(15, 27, 45, 0.06);

  --orange: #FF8C42;
  --orange-dark: #E67432;
  --orange-soft: rgba(255, 140, 66, 0.12);
  --orange-glow: rgba(255, 140, 66, 0.35);

  --ink: #14181F;
  --ink-soft: #4A5160;
  --ink-muted: #6B7280;

  --gray-50: #FAFAFB;
  --gray-100: #F5F5F7;
  --gray-200: #E8E9ED;
  --gray-300: #C9CCD4;

  --white: #FFFFFF;

  /* Typografie */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "SF Mono", Menlo, Consolas, monospace;

  /* Maten */
  --container: 1180px;
  --container-tight: 880px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Schaduwen */
  --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06), 0 1px 2px rgba(15, 27, 45, 0.04);
  --shadow: 0 8px 24px rgba(15, 27, 45, 0.08), 0 2px 6px rgba(15, 27, 45, 0.04);
  --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.12), 0 8px 16px rgba(15, 27, 45, 0.06);

  /* Overgangen */
  --t-fast: 0.15s ease;
  --t: 0.25s ease;
}

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typografie ───────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--navy-deep); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.lead { font-size: 1.15rem; line-height: 1.55; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.on-light { color: var(--orange-dark); }

em.accent { font-style: italic; color: var(--orange); font-weight: 500; }
strong { font-weight: 600; color: var(--navy-deep); }

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

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav.on-dark {
  background: rgba(15, 27, 45, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.nav.on-dark .nav-brand { color: var(--white); }
.nav-brand .dot { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--navy-deep); }
.nav-link.active { color: var(--navy-deep); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.nav.on-dark .nav-link { color: rgba(255, 255, 255, 0.7); }
.nav.on-dark .nav-link:hover, .nav.on-dark .nav-link.active { color: var(--white); }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 6px;
  color: var(--ink);
}
.nav.on-dark .nav-toggle { color: var(--white); }

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav.on-dark .nav-links { background: var(--navy-deep); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 24px; width: 100%; }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--orange-soft); color: var(--orange-dark); }
  .nav-toggle { display: inline-flex; }
}

/* ── Knoppen ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px var(--orange-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -100px, rgba(255, 140, 66, 0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 100%, rgba(43, 91, 168, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.hero h1 {
  color: var(--white);
  margin: 16px 0 20px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: -0.03em;
}
.hero h1 .accent-word { color: var(--orange); font-style: italic; font-weight: 400; }
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-portrait {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 440px;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -16px -16px 24px 24px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.85;
}
.hero-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta::before, .hero-meta::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex: 1;
}
.hero-meta span { padding: 0 16px; }

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 72px;
  }
  .hero-portrait { max-width: 320px; justify-self: center; }
  .hero-meta { position: static; margin-top: 32px; }
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section.tight { padding: 64px 0; }
.section-tinted { background: var(--gray-50); }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.72); }

.section-header { margin-bottom: 48px; max-width: 720px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section.tight { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
}

/* ── Client strip ─────────────────────────────────────────────── */
.client-strip {
  padding: 32px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.client-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.client-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.client-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
}

/* ── Grid ─────────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Feature card ─────────────────────────────────────────────── */
.feature {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--t);
}
.feature:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { margin: 0; font-size: 0.95rem; }

/* ── Case card ────────────────────────────────────────────────── */
.case {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.case:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.case-image {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(15, 27, 45, 0.05) 100%),
    var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--gray-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.case-image .placeholder-tag {
  background: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px dashed var(--gray-300);
}
.case-body { padding: 24px; flex: 1; }
.case-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.case h3 { font-size: 1.1rem; margin-bottom: 6px; }
.case-body p { font-size: 0.92rem; margin: 0; }
.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--orange-soft);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Quote ────────────────────────────────────────────────────── */
.quote-large {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  position: relative;
  padding-left: 36px;
}
.quote-large::before {
  content: "\201C";
  position: absolute;
  left: -8px;
  top: -16px;
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-attrib {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.quote-attrib strong { color: var(--navy-deep); }

/* ── Testimonial card ─────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 400;
}
.testimonial-text::before {
  content: "\201C";
  color: var(--orange);
  font-size: 1.6rem;
  font-family: Georgia, serif;
  line-height: 0;
  margin-right: 2px;
  vertical-align: -10px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 1px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gray-300);
  flex-shrink: 0;
}
.testimonial-meta .name { font-weight: 600; color: var(--navy-deep); }
.testimonial-meta .role { color: var(--ink-muted); }

/* ── Chips ────────────────────────────────────────────────────── */
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-deep);
  transition: all var(--t-fast);
}
.chip:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}
.chip .chip-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ── Roles section ────────────────────────────────────────────── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .roles-grid { grid-template-columns: 1fr; } }
.role-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--t);
}
.role-card:hover {
  border-color: var(--navy);
}
.role-card .eyebrow {
  font-size: 0.7rem;
  margin-bottom: 8px;
  color: var(--ink-muted);
}
.role-card h4 { font-size: 1rem; margin-bottom: 6px; }
.role-card p { font-size: 0.85rem; line-height: 1.45; margin: 0; }

/* ── CTA block (dark or light) ───────────────────────────────── */
.cta-block {
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: var(--container);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 140, 66, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-block h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-block p { color: rgba(255, 255, 255, 0.75); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-block .btn { position: relative; }

/* ── Story (over-page) ────────────────────────────────────────── */
.story-act {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.story-act:last-child { border-bottom: 0; }
.story-act-year {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.story-act h3 { margin-bottom: 10px; }
.story-act p { font-size: 1rem; margin-bottom: 0.5rem; }
@media (max-width: 640px) {
  .story-act { grid-template-columns: 1fr; gap: 8px; }
  .story-act-year { font-size: 0.85rem; }
}

/* ── Stats inline ─────────────────────────────────────────────── */
.stats-inline {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stat .num {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  line-height: 1;
}
.section-dark .stat .num { color: var(--white); }
.stat .label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.section-dark .stat .label { color: rgba(255, 255, 255, 0.6); }

/* ── Form ─────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.005em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Contact info card ────────────────────────────────────────── */
.contact-card {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.15rem; }
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-line:first-of-type { padding-top: 0; }
.contact-line:last-of-type { border-bottom: 0; padding-bottom: 0; }
.contact-line .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.contact-line .value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.contact-line a.value:hover { color: var(--orange); }

/* ── Layout helpers ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-center { text-align: center; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  padding: 48px 0 32px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand .dot { color: var(--orange); }
.footer-desc { max-width: 320px; line-height: 1.55; }
.footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Demo banner (clearly mark this is a placeholder demo) ────── */
.demo-banner {
  background: var(--orange-soft);
  color: var(--orange-dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--orange);
}

/* ── Utilities ────────────────────────────────────────────────── */
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

/* Subtle reveal on scroll-into-view (CSS only, fallback graceful) */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 30%;
    }
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  }
}

/* ═══════════════════════════════════════════════════════════════
   WOW-PASS · Hero overhaul, diagonal signatures, reveal, stats
   Toegevoegd 2026-05-19
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO 2.0 — Asymmetric + diagonal portrait ──────────────── */
.hero-v2 {
  position: relative;
  background:
    radial-gradient(900px 500px at 75% 30%, rgba(255, 140, 66, 0.16), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(36, 91, 168, 0.20), transparent 60%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
}
.hero-v2-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  position: relative;
}
.hero-v2-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 48px 96px 48px;
  position: relative;
  z-index: 2;
}
.hero-v2-text .eyebrow {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.78rem;
}
.hero-v2-text h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0 0 28px;
}
.hero-v2-text h1 .accent-word {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: -0.04em;
}
.hero-v2-text .lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-v2-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-v2-portrait {
  position: relative;
  overflow: hidden;
  /* Diagonal slice — picture grows from the left bottom */
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--navy);
}
.hero-v2-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  /* Subtle drift on load */
  animation: hero-portrait-in 1.4s cubic-bezier(.16,.84,.27,1) both;
}
@keyframes hero-portrait-in {
  from { opacity: 0; transform: scale(1.06) translateX(2%); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
.hero-v2-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 45, 0.55) 0%, rgba(15, 27, 45, 0) 30%);
  pointer-events: none;
}
.hero-v2-meta {
  position: absolute;
  bottom: 32px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-v2-meta .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.hero-v2-meta span { padding: 0 18px; }

@media (max-width: 980px) {
  .hero-v2 { min-height: auto; }
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-text { padding: 56px 28px 32px; }
  .hero-v2-portrait { clip-path: none; min-height: 380px; aspect-ratio: 4 / 5; max-height: 60vh; }
  .hero-v2-portrait::after { background: linear-gradient(180deg, rgba(15, 27, 45, 0) 60%, rgba(15, 27, 45, 0.6) 100%); }
  .hero-v2-meta { left: 28px; right: 28px; bottom: 20px; }
}

/* Compact hero variant for sub-pages (no portrait) */
.hero-v2.compact { min-height: auto; }
.hero-v2.compact .hero-v2-grid { grid-template-columns: 1fr; }
.hero-v2.compact .hero-v2-text { padding: 80px 28px 96px; max-width: 920px; margin: 0 auto; text-align: left; }
.hero-v2.compact h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.hero-v2.compact .lead { max-width: 640px; }

/* ── Diagonal section break (signature) ─────────────────────── */
.diagonal-break {
  position: relative;
  height: 6vw;
  min-height: 60px;
  max-height: 120px;
  margin-top: -1px; /* prevent gap */
  background: transparent;
  pointer-events: none;
}
.diagonal-break svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.diagonal-break.from-dark svg .fill { fill: var(--navy-deep); }
.diagonal-break.from-dark-to-tint svg .fill { fill: var(--gray-50); }
.diagonal-break.from-tint svg .fill { fill: var(--white); }
.diagonal-break.from-tint-to-dark svg .fill { fill: var(--navy-deep); }
.diagonal-break.from-white-to-tint svg .fill { fill: var(--gray-50); }
.diagonal-break.from-white-to-dark svg .fill { fill: var(--navy-deep); }

/* Hero ends with diagonal cut into next section */
.hero-cut-bottom {
  position: relative;
}
.hero-cut-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 6vw;
  min-height: 60px;
  max-height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-cut-bottom.to-tint::after { background: var(--gray-50); }

/* ── Reveal animations (IntersectionObserver-based) ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.27,1), transform 0.7s cubic-bezier(.16,.84,.27,1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Stats — Big tiles for home ─────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
  position: relative;
}
.stat-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.stat-tile-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 50%, var(--orange) 100%);
}
.stat-tile-body { padding: 28px 20px 24px; text-align: center; }
.stat-tile .stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-tile .stat-num .suffix {
  color: var(--orange);
  font-weight: 600;
}
.stat-tile .stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* ── Mood strip — sfeer-impressie placeholder grid ──────────── */
.mood-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 900px) { .mood-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .mood-strip { grid-template-columns: repeat(2, 1fr); } }
.mood-cell {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px 12px;
  transition: transform var(--t);
}
.mood-cell:hover { transform: translateY(-3px); }
.mood-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0, rgba(255, 140, 66, 0.4), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(43, 91, 168, 0.3), transparent 60%);
}
.mood-cell .mood-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.mood-cell .mood-label .placeholder-mark {
  display: block;
  font-size: 0.62rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

/* ── Case card hover — image zoom + tilt ────────────────────── */
.case .case-image { transition: background-position 0.6s ease; overflow: hidden; }
.case .case-image > * { transition: transform 0.6s cubic-bezier(.2,.6,.2,1); }
.case:hover .case-image > * { transform: scale(1.06); }

/* ── Role card with orange-stroke hover ─────────────────────── */
.role-card { position: relative; }
.role-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t);
}
.role-card:hover { transform: translateY(-2px); }
.role-card:hover::after { transform: scaleY(1); }

/* ── Pull-quote callout (alternate to .quote-large) ─────────── */
.pull-quote {
  position: relative;
  padding: 48px 32px;
  background:
    radial-gradient(800px 300px at 20% 0, rgba(255, 140, 66, 0.08), transparent 60%),
    var(--gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pull-quote .quote-text {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  max-width: 780px;
  margin: 0 auto 24px;
}
.pull-quote .quote-text em { color: var(--orange); font-style: italic; font-weight: 400; }
.pull-quote .quote-author { font-size: 0.88rem; color: var(--ink-muted); }
.pull-quote .quote-author strong { color: var(--navy-deep); }

/* ── Calendar-tile (for upcoming events / referenties) ──────── */
.cal-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.cal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cal-date {
  background: var(--navy-deep);
  color: var(--white);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  flex-shrink: 0;
}
.cal-date .month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.7); }
.cal-date .day { font-size: 2rem; font-weight: 700; line-height: 1; margin: 4px 0 2px; }
.cal-date .year { font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; }
.cal-body { padding: 18px 20px; flex: 1; }
.cal-body .cal-loc { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange-dark); font-weight: 600; }
.cal-body h3 { font-size: 1.05rem; margin: 4px 0 6px; }
.cal-body p { font-size: 0.88rem; margin: 0; }

/* ── Marquee-strip (continuous logo scroll) ─────────────────── */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
