/*
 * Talenthouse — Visual System v2 (Purple + Orange)
 * Keeps existing class names from current HTML so pages stay compatible.
 */

:root {
  --sb-primary: #f05a23;
  --sb-secondary: #360f85;
  --sb-accent: #8b5cf6;
  --sb-text: #100d1a;
  --sb-muted: #7266a0;
  --sb-surface: #ffffff;
  --sb-surface-alt: #f0eaff;
  --sb-canvas: #faf8ff;
  --sb-border: #e4d9ff;

  --band-white: var(--sb-surface);
  --band-canvas: var(--sb-canvas);
  --band-tinted: color-mix(in oklab, var(--sb-accent) 9%, white);
  --band-dark: var(--sb-secondary);

  --sb-shadow-soft: 0 1px 4px rgba(55, 15, 133, 0.06), 0 4px 16px rgba(55, 15, 133, 0.08);
  --sb-shadow-elevated: 0 4px 12px rgba(55, 15, 133, 0.1), 0 16px 48px rgba(55, 15, 133, 0.14);
  --sb-shadow-orange: 0 4px 20px rgba(240, 90, 35, 0.3);

  --sb-radius-card: 16px;
  --sb-radius-button: 10px;
  --sb-radius-pill: 999px;

  --sb-font-family: 'Manrope', system-ui, sans-serif;
  --sb-display: 800 clamp(2.8rem, 5.4vw, 4rem) / 1.05 'Manrope', sans-serif;
  --sb-h1: 800 clamp(2rem, 3.6vw, 3rem) / 1.1 'Manrope', sans-serif;
  --sb-h2: 700 clamp(1.6rem, 2.6vw, 2.1rem) / 1.18 'Manrope', sans-serif;
  --sb-h3: 700 1.125rem / 1.3 'Manrope', sans-serif;
  --sb-body: 400 1rem / 1.7 'Manrope', sans-serif;

  --sb-section-y: 96px;
  --sb-section-x: clamp(20px, 5vw, 48px);
  --sb-container: 1200px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font: var(--sb-body);
  font-family: var(--sb-font-family);
  color: var(--sb-text);
  background: var(--sb-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sb-font-family);
  font-weight: 700;
  color: var(--sb-text);
  text-wrap: balance;
  letter-spacing: -0.025em;
}

.th-section {
  padding-block: var(--sb-section-y);
  padding-inline: var(--sb-section-x);
}

.th-section[data-band="white"] {
  background: var(--band-white);
}

.th-section[data-band="canvas"] {
  background: var(--band-canvas);
}

.th-section[data-band="tinted"] {
  background: var(--band-tinted);
}

.th-section[data-band="dark"] {
  background: var(--band-dark);
  color: white;
}

.th-section[data-band="orange"] {
  background: var(--sb-primary);
  color: white;
}

.th-section--clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: calc(var(--sb-section-y) + 40px);
}

.th-section--clip-top {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--sb-section-y) + 40px);
  margin-top: -2px;
}

.th-section-inner {
  max-width: var(--sb-container);
  margin-inline: auto;
  width: 100%;
}

.th-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sb-primary);
  margin-bottom: 14px;
}

.th-eyebrow::before {
  content: '';
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--sb-primary);
}

.th-section[data-band="dark"] .th-eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.th-section[data-band="orange"] .th-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.th-section[data-band="dark"] .th-eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.th-section[data-band="orange"] .th-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.th-heading-display {
  font: var(--sb-display);
}

.th-heading-h1 {
  font: var(--sb-h1);
}

.th-heading-h2 {
  font: var(--sb-h2);
}

.th-orange {
  color: var(--sb-primary);
}

.th-section[data-band="dark"] .th-orange,
.th-section[data-band="orange"] .th-orange {
  color: color-mix(in oklab, var(--sb-primary) 40%, white);
}

.th-section[data-band="dark"] .th-heading-display,
.th-section[data-band="dark"] .th-heading-h1,
.th-section[data-band="dark"] .th-heading-h2 {
  color: white;
}

.th-section[data-band="orange"] .th-heading-display,
.th-section[data-band="orange"] .th-heading-h1,
.th-section[data-band="orange"] .th-heading-h2 {
  color: white;
}

.th-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.75;
  color: var(--sb-muted);
  max-width: 58ch;
  text-wrap: pretty;
}

.th-section[data-band="dark"] .th-lead {
  color: rgba(255, 255, 255, 0.7);
}

.th-section[data-band="orange"] .th-lead {
  color: rgba(255, 255, 255, 0.78);
}

.th-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--sb-primary);
  color: white;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: var(--sb-radius-button);
  border: 2px solid transparent;
  box-shadow: var(--sb-shadow-orange);
  transition: background 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), transform 0.12s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.th-btn-primary:hover,
.th-btn-primary:focus-visible {
  background: color-mix(in oklab, var(--sb-primary) 80%, black);
  transform: translateY(-2px);
}

.th-section[data-band="orange"] .th-btn-primary {
  background: white;
  color: var(--sb-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.th-section[data-band="orange"] .th-btn-primary:hover,
.th-section[data-band="orange"] .th-btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.th-section[data-band="orange"] .th-btn-ghost-white {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.th-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 29px;
  background: transparent;
  color: var(--sb-secondary);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--sb-radius-button);
  border: 2px solid var(--sb-secondary);
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), transform 0.12s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.th-btn-secondary:hover,
.th-btn-secondary:focus-visible {
  background: var(--sb-secondary);
  color: white;
  transform: translateY(-2px);
}

.th-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 29px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--sb-radius-button);
  border: 2px solid rgba(255, 255, 255, 0.28);
  transition: background 0.15s var(--ease-out), border-color 0.15s var(--ease-out), transform 0.12s var(--ease-out);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.th-btn-ghost-white:hover,
.th-btn-ghost-white:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateY(-2px);
}

/* Nav */
.th-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--sb-border);
  transition: box-shadow 0.25s;
}

.th-nav.is-scrolled {
  box-shadow: var(--sb-shadow-soft);
}

.th-nav-inner {
  max-width: var(--sb-container);
  margin-inline: auto;
  padding: 0 var(--sb-section-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.th-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.th-nav-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sb-secondary);
  overflow: hidden;
  flex-shrink: 0;
}

.th-nav-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  /* invert white logo on dark purple background */
  filter: brightness(0) invert(1);
}

.th-nav-wordmark {
  font-family: var(--sb-font);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--sb-secondary);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

/* Icon sizing for Phosphor icons */
.th-intro-value-icon i,
.th-stakeholder-icon i,
.th-step-icon i,
.th-situation-icon-wrap i {
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-address-line-icon i {
  font-size: 1rem;
  display: flex;
}

.th-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.th-nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sb-text);
  padding: 8px 14px;
  border-radius: var(--sb-radius-button);
  transition: color 0.12s, background 0.12s;
}

.th-nav-link:hover {
  color: var(--sb-secondary);
  background: color-mix(in oklab, var(--sb-accent) 10%, white);
}

.th-nav-link.is-active {
  color: var(--sb-primary);
}

.th-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--sb-text);
}

.has-nav {
  padding-top: 72px;
}

/* Hero */
.th-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.th-hero-bg {
  position: absolute;
  inset: 0;
}

.th-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.th-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(54, 15, 133, 0.92) 0%, rgba(54, 15, 133, 0.72) 56%, rgba(54, 15, 133, 0.28) 100%);
}

.th-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--sb-primary);
}

.th-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--sb-container);
  margin-inline: auto;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) var(--sb-section-x);
}

.th-hero-content .th-eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.th-hero-content .th-eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.th-hero-content .th-heading-display {
  color: white;
  max-width: 15ch;
  margin-bottom: 20px;
}

.th-hero-content .th-lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 36px;
}

.th-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.th-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}

.th-hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-basis: 100%;
}

.th-hero-partner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--sb-radius-pill);
  padding: 6px 14px 6px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.th-hero-partner:hover {
  background: rgba(255, 255, 255, 0.15);
}

.th-hero-partner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sb-primary);
}

/* Inner hero */
.th-hero-inner {
  position: relative;
  overflow: hidden;
  background: var(--sb-secondary);
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 80px var(--sb-section-x);
}

.th-hero-inner .th-hero-bg {
  position: absolute;
  inset: 0;
}

.th-hero-inner .th-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.th-hero-inner .th-hero-overlay {
  background: linear-gradient(105deg, rgba(54, 15, 133, 0.93) 0%, rgba(54, 15, 133, 0.8) 55%, rgba(54, 15, 133, 0.4) 100%);
}

.th-hero-inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--sb-primary);
}

.th-hero-inner .th-hero-content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.th-hero-inner .th-eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.th-hero-inner .th-eyebrow::before {
  background: rgba(255, 255, 255, 0.45);
}

.th-hero-inner .th-heading-h1 {
  color: white;
  max-width: 22ch;
  margin-bottom: 16px;
}

.th-hero-inner .th-lead {
  color: rgba(255, 255, 255, 0.75);
}

/* Breadcrumb */
.th-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.th-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.th-breadcrumb a:hover {
  color: white;
}

.th-breadcrumb-sep {
  opacity: 0.3;
}

/* Conviction strip */
.th-conviction {
  background: var(--sb-secondary);
  padding: 52px var(--sb-section-x);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 100px;
}

.th-conviction::before {
  content: 'TALENT';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-size: 16rem;
  font-weight: 900;
  color: white;
  opacity: 0.03;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.th-conviction-inner {
  max-width: var(--sb-container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.th-conviction-text {
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 700;
  color: white;
  line-height: 1.35;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 260px;
}

.th-conviction-text strong {
  color: var(--sb-primary);
}

.th-conviction-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.th-conviction-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.th-conviction-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sb-primary);
  line-height: 1;
}

.th-conviction-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Section headers */
.th-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 52ch;
  text-align: center;
  margin-inline: auto;
}

.th-section-header .th-lead {
  margin-inline: auto;
  margin-top: 14px;
}

/* Intro */
.th-intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.th-intro-media {
  position: relative;
  border-radius: var(--sb-radius-card);
  overflow: hidden;
  box-shadow: var(--sb-shadow-elevated);
  aspect-ratio: 4/5;
}

.th-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-intro-media-accent {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -20px;
  bottom: -20px;
  border-radius: var(--sb-radius-card);
  background: var(--sb-primary);
  opacity: 0.18;
  z-index: -1;
}

.th-intro-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.th-intro-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.th-intro-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sb-border);
}

.th-intro-value:last-child {
  border-bottom: none;
}

.th-intro-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--sb-accent) 10%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.th-intro-value-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.th-intro-value-text span {
  font-size: 0.875rem;
  color: var(--sb-muted);
}

/* Stakeholders */
.th-stakeholders-header {
  max-width: 56ch;
}

.th-stakeholders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.th-stakeholder-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sb-radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.th-stakeholder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.th-stakeholder-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.th-stakeholder-card:hover::before {
  transform: scaleX(1);
}

.th-stakeholder-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.th-stakeholder-card h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
}

.th-stakeholder-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

/* Voor-wie cards */
.th-voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.th-voor-wie-grid > *:nth-child(even) {
  transform: translateY(24px);
}

.th-voor-wie-card {
  background: var(--sb-surface);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--sb-radius-card);
  padding: 32px;
  transition: border-color 0.15s, box-shadow 0.2s, transform 0.2s var(--ease-out);
}

.th-voor-wie-card:hover {
  border-color: var(--sb-primary);
  box-shadow: var(--sb-shadow-elevated);
  transform: translateY(-3px) !important;
}

.th-voor-wie-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sb-accent);
  background: color-mix(in oklab, var(--sb-accent) 12%, white);
  padding: 4px 10px;
  border-radius: var(--sb-radius-pill);
  margin-bottom: 16px;
}

.th-voor-wie-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.th-voor-wie-card p {
  font-size: 0.9rem;
  color: var(--sb-muted);
  line-height: 1.68;
}

/* Steps */
.th-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.th-step {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: 32px 24px 24px;
  box-shadow: var(--sb-shadow-soft);
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s var(--ease-out);
}

.th-step:hover {
  border-top-color: var(--sb-primary);
  box-shadow: var(--sb-shadow-elevated);
  transform: translateY(-3px);
}

.th-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--sb-accent) 10%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.th-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.th-step p {
  font-size: 0.875rem;
  color: var(--sb-muted);
  line-height: 1.65;
}

/* Activities */
.th-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.th-activity-card {
  border-radius: var(--sb-radius-card);
  overflow: hidden;
  background: var(--sb-surface);
  box-shadow: var(--sb-shadow-soft);
  border: 1.5px solid var(--sb-border);
  transition: box-shadow 0.18s, transform 0.18s var(--ease-out), border-color 0.15s;
}

.th-activity-card:hover {
  box-shadow: var(--sb-shadow-elevated);
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--sb-primary) 30%, transparent);
}

.th-activity-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.th-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.th-activity-card:hover .th-activity-image img {
  transform: scale(1.04);
}

.th-activity-body {
  padding: 20px 24px;
}

.th-activity-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.th-activity-body p {
  font-size: 0.875rem;
  color: var(--sb-muted);
  line-height: 1.65;
}

/* Video */
.th-video-wrap {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.th-video-player {
  border-radius: var(--sb-radius-card);
  overflow: hidden;
  box-shadow: var(--sb-shadow-elevated);
  aspect-ratio: 16/9;
  background: var(--sb-secondary);
}

.th-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-video-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.th-quote-block {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: 24px 28px;
  box-shadow: var(--sb-shadow-soft);
  border-left: 4px solid var(--sb-primary);
}

.th-quote-block blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 10px;
}

.th-quote-block cite {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 800;
  color: var(--sb-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Partners */
.th-partners-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.th-partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sb-surface);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--sb-radius-pill);
  padding: 10px 22px 10px 14px;
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: var(--sb-shadow-soft);
  transition: box-shadow 0.15s, transform 0.15s var(--ease-out), border-color 0.15s;
}

.th-partner-badge:hover {
  box-shadow: var(--sb-shadow-elevated);
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--sb-primary) 40%, transparent);
}

.th-partner-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sb-primary);
}

/* CTA block */
.th-cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.th-cta-body h2 {
  color: white;
  max-width: 20ch;
}

.th-cta-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 44ch;
  margin-top: 12px;
}

.th-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* Situations */
.th-situations-list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin-inline: auto;
}

.th-situation-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--sb-border);
}

.th-situation-item:last-child {
  border-bottom: none;
}

.th-situation-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--sb-accent) 10%, white);
  border: 1.5px solid var(--sb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.th-situation-text h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.th-situation-text p {
  font-size: 0.9375rem;
  color: var(--sb-muted);
  line-height: 1.65;
}

/* Checklist + verwijzers */
.th-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.th-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.th-checklist-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sb-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.th-verwijzers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.th-verwijzers-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.th-verwijzers-visual {
  border-radius: var(--sb-radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sb-shadow-elevated);
}

.th-verwijzers-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.th-contact-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.th-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.th-contact-block h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sb-primary);
  margin-bottom: 12px;
}

.th-contact-block p,
.th-contact-block a {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.th-contact-persons {
  display: flex;
  flex-direction: column;
}

.th-contact-person {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sb-border);
}

.th-contact-person:last-child {
  border-bottom: none;
}

.th-contact-person-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--sb-accent) 10%, white);
  border: 2px solid var(--sb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.th-contact-person-details strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.th-contact-person-details span {
  display: block;
  font-size: 0.8125rem;
  color: var(--sb-muted);
  margin-bottom: 6px;
}

.th-contact-person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.th-contact-person-link {
  font-size: 0.875rem;
  color: var(--sb-secondary);
  font-weight: 600;
}

.th-contact-person-link:hover {
  color: var(--sb-primary);
}

.th-form {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sb-shadow-elevated);
  border: 1.5px solid var(--sb-border);
}

.th-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.th-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.th-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.th-form-label {
  font-size: 0.8125rem;
  font-weight: 700;
}

.th-form-label .optional {
  font-weight: 400;
  color: var(--sb-muted);
  margin-left: 4px;
}

.th-form-input,
.th-form-select,
.th-form-textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--sb-border);
  border-radius: var(--sb-radius-button);
  background: var(--sb-canvas);
  color: var(--sb-text);
  font-size: 0.9375rem;
  width: 100%;
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.th-form-input:focus,
.th-form-select:focus,
.th-form-textarea:focus {
  outline: none;
  border-color: var(--sb-accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--sb-accent) 18%, transparent);
  background: white;
}

.th-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.th-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237266A0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.th-form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.th-form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sb-primary);
}

.th-form-checkbox-label {
  font-size: 0.875rem;
  color: var(--sb-muted);
  line-height: 1.6;
}

.th-form-checkbox-label a {
  color: var(--sb-secondary);
  font-weight: 600;
}

.th-form-checkbox-label a:hover {
  text-decoration: underline;
}

/* Map */
.th-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.th-map-embed {
  border-radius: var(--sb-radius-card);
  overflow: hidden;
  box-shadow: var(--sb-shadow-elevated);
  aspect-ratio: 4/3;
  border: 1.5px solid var(--sb-border);
}

.th-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.th-map-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.th-address-card {
  background: var(--sb-surface);
  border: 1.5px solid var(--sb-border);
  border-radius: var(--sb-radius-card);
  padding: 28px;
  box-shadow: var(--sb-shadow-soft);
}

.th-address-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.th-address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.th-address-line-icon {
  font-size: 1rem;
  margin-top: 2px;
}

.th-socials-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.th-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1.5px solid var(--sb-border);
  border-radius: var(--sb-radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--sb-surface);
  box-shadow: var(--sb-shadow-soft);
  transition: border-color 0.12s, box-shadow 0.12s, color 0.12s, transform 0.12s var(--ease-out);
}

.th-social-link:hover {
  border-color: var(--sb-primary);
  box-shadow: var(--sb-shadow-elevated);
  transform: translateY(-1px);
  color: var(--sb-primary);
}

/* Footer */
.th-footer {
  background: var(--sb-secondary);
  position: relative;
  overflow: hidden;
  padding: 64px var(--sb-section-x) 36px;
}

.th-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.th-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-accent));
}

.th-footer-inner {
  max-width: var(--sb-container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.th-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.th-footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(10);
  opacity: 0.9;
}

.th-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 26ch;
}

.th-footer-col h4,
.th-footer h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.th-footer-col ul,
.th-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.th-footer-col li a,
.th-footer li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color 0.12s;
}

.th-footer-col li a:hover,
.th-footer li a:hover {
  color: white;
}

.th-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.th-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.th-footer-bottom a:hover {
  color: white;
}

.th-divider {
  border: none;
  border-top: 1px solid var(--sb-border);
  margin-block: 32px;
}

.th-stack {
  margin-bottom: 24px;
}

:focus-visible {
  outline: 2px solid var(--sb-primary);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 960px) {
  .th-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .th-intro-grid,
  .th-video-wrap,
  .th-contact-layout,
  .th-map-wrap,
  .th-verwijzers-grid {
    grid-template-columns: 1fr;
  }

  .th-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .th-stakeholders-grid,
  .th-voor-wie-grid {
    grid-template-columns: 1fr;
  }

  .th-voor-wie-grid > *:nth-child(even) {
    transform: none;
  }

  .th-cta-layout {
    grid-template-columns: 1fr;
  }

  .th-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .th-form-row {
    grid-template-columns: 1fr;
  }

  .th-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .th-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px var(--sb-section-x) 24px;
    border-bottom: 1px solid var(--sb-border);
    box-shadow: var(--sb-shadow-elevated);
    gap: 4px;
  }

  .th-nav-links.is-open {
    display: flex;
  }

  .th-nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .th-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .th-nav-cta {
    display: none;
  }
}

@media (max-width: 520px) {
  .th-activities-grid,
  .th-steps-grid {
    grid-template-columns: 1fr;
  }

  .th-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   SPLIT LAYOUT — two-column split sections
   ========================================================= */

.th-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.th-split--image-right .th-split-text { order: 1; }
.th-split--image-right .th-split-image { order: 2; }
.th-split--image-left  .th-split-text  { order: 2; }
.th-split--image-left  .th-split-image { order: 1; }

.th-split-image img {
  width: 100%;
  height: auto;
  border-radius: var(--sb-radius-card);
  object-fit: cover;
  display: block;
}

.th-split-image--map {
  display: flex;
  align-items: stretch;
}

.th-split-image--map iframe {
  width: 100%;
  min-height: 380px;
}

.th-split-text h2 {
  margin-top: 12px;
  margin-bottom: 20px;
}

.th-split-text p {
  color: var(--sb-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.th-split-text a.th-btn-secondary,
.th-split-text a.th-btn-primary {
  margin-top: 12px;
}

@media (max-width: 860px) {
  .th-split {
    grid-template-columns: 1fr;
  }
  .th-split--image-right .th-split-image,
  .th-split--image-left  .th-split-image { order: -1; }
}

/* =========================================================
   VALUES GRID — kernwaarden
   ========================================================= */

.th-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.th-value-card {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: 28px 24px;
  border: 1.5px solid var(--sb-border);
}

.th-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--sb-secondary) 10%, white);
  color: var(--sb-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.th-value-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sb-secondary);
  margin-bottom: 10px;
}

.th-value-card p {
  font-size: 0.9375rem;
  color: var(--sb-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .th-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .th-values-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   APPROACH LIST — aanpak bullets
   ========================================================= */

.th-approach-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.th-approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.th-approach-list li i {
  color: var(--sb-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================================
   TEAM GRID — teamkaarten
   ========================================================= */

.th-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.th-team-card {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: 28px 24px;
  border: 1.5px solid var(--sb-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.th-team-card:hover {
  box-shadow: var(--sb-shadow-soft);
  transform: translateY(-2px);
}

.th-team-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--sb-primary) 10%, white);
  color: var(--sb-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.th-team-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sb-text);
  margin-bottom: 10px;
}

.th-team-card p {
  font-size: 0.9375rem;
  color: var(--sb-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .th-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .th-team-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PARTNERS DETAIL GRID — gedetailleerde partnerkaarten
   ========================================================= */

.th-partners-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.th-partner-detail-card {
  background: var(--sb-surface);
  border-radius: var(--sb-radius-card);
  padding: 32px 28px;
  border: 1.5px solid var(--sb-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.th-partner-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--sb-secondary) 10%, white);
  color: var(--sb-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.th-partner-detail-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sb-secondary);
  margin: 0;
}

.th-partner-detail-card p {
  font-size: 0.9375rem;
  color: var(--sb-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.th-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sb-secondary);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.15s;
}

.th-partner-link:hover {
  color: var(--sb-primary);
}

@media (max-width: 860px) {
  .th-partners-detail-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA BAND — orange band varianten
   ========================================================= */

.th-cta-band {
  padding: clamp(64px, 8vw, 96px) 0;
}

.th-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.th-cta-band-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.th-cta-band-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  margin: 0;
}

.th-cta-band-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.th-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--sb-primary);
  border: 2px solid #fff;
  padding: 13px 28px;
  border-radius: var(--sb-radius-button);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--sb-font);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  white-space: nowrap;
}

.th-btn-white:hover {
  background: color-mix(in oklab, #fff 88%, var(--sb-primary));
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .th-cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .th-cta-band-actions {
    justify-content: center;
  }
}

/* =========================================================
   ADDRESS BLOCK — locatieblok stijl
   ========================================================= */

.th-address-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.th-address-block .th-address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.th-address-block .th-address-line-icon {
  color: var(--sb-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.th-address-block a {
  color: var(--sb-text);
  font-weight: 600;
  text-decoration: none;
}

.th-address-block a:hover {
  color: var(--sb-primary);
}
