/* ==========================================================================
   KingsTalent Group — stylesheet
   ========================================================================== */

@font-face {
  font-family: "VTF Redzone";
  src: url("../assets/fonts/VarsityType Foundry - VTF Redzone Classic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "VTF Redzone";
  src: url("../assets/fonts/VarsityType Foundry - VTF Redzone Classic Oblique.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  /* KingsTalent (hoofdmerk) */
  --kt-violet: #3a2766;
  --kt-violet-dark: #2a1c4a;
  --kt-yellow: #ffd700;
  --kt-black: #1e0623;
  --kt-pink: #960064;

  /* StudyKings */
  --sk-orange: #e65300;
  --sk-green: #bbc392;
  --sk-pink: #ffcdb0;

  /* HockeyKings */
  --hk-anthracite: #333132;
  --hk-black: #0a0a0a;
  --hk-lavender: #a1a2ff;
  --hk-orange: #f58345;

  /* UnitedKings */
  --uk-teal: #183949;
  --uk-neon: #1ce783;
  --uk-black: #040405;
  --uk-grey: #d9d9d9;
  --uk-green: #00bf6f;

  --bg: #fbfaf9;
  --bg-alt: #f3f0ec;
  --ink: var(--kt-black);
  --ink-soft: #5a4f66;
  --line: #e6e0eb;
  --white: #ffffff;

  --font-display: "VTF Redzone", "Roboto", sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --container: clamp(1180px, 92vw, 1800px);
  --shadow: 0 20px 50px -25px rgba(30, 6, 35, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
p { margin: 0; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kt-pink);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--kt-yellow);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--kt-yellow); }
.eyebrow.on-dark::before { background: var(--kt-pink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--kt-yellow); color: var(--kt-black); }
.btn-primary:hover { box-shadow: 0 12px 28px -10px rgba(255, 215, 0, 0.55); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-dark { background: var(--kt-black); color: var(--white); }
.btn-dark:hover { box-shadow: 0 12px 28px -10px rgba(30, 6, 35, 0.5); }
.btn-outline { background: transparent; color: var(--kt-black); border-color: var(--kt-black); }
.btn-outline:hover { background: var(--kt-black); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(251, 250, 249, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px -8px rgba(30, 6, 35, 0.15);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.25s ease;
}
.brand-word b { color: var(--kt-yellow); font-weight: inherit; }
.site-header.scrolled .brand-word { color: var(--kt-black); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  position: relative;
}
.site-header.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--kt-yellow); }
.site-header.scrolled .nav-links a:hover { color: var(--kt-violet); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.site-header.scrolled .btn-ghost { color: var(--kt-black); border-color: rgba(30,6,35,0.25); }
.site-header.scrolled .btn-ghost:hover { background: rgba(30,6,35,0.06); border-color: var(--kt-black); }

.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lang-switch-btn:hover { opacity: 0.8; }
.lang-switch-btn.is-active { opacity: 1; border-color: var(--kt-yellow); }
.site-header.scrolled .lang-switch-btn.is-active { border-color: var(--kt-violet); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.2s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--kt-black); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(150, 0, 100, 0.35), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255, 215, 0, 0.18), transparent 40%),
    linear-gradient(160deg, var(--kt-black) 0%, var(--kt-violet-dark) 55%, var(--kt-violet) 100%);
  overflow: hidden;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-crown {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 480px;
  opacity: 0.16;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.15));
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 1;
  margin: 0 0 26px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero h1 em {
  font-style: normal;
  color: var(--kt-yellow);
}
.hero-mission {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  max-width: 660px;
  margin: 0 0 38px;
}
.hero-mission em {
  font-style: normal;
  color: var(--kt-yellow);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 32px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-stats--left { margin: 0; text-align: left; max-width: 620px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--kt-yellow);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ---------- Hero visual: logo grid ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  z-index: 2;
}
.hero-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hero-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.55);
  padding: 22px;
  transition: transform 0.2s ease;
}
.hero-logo-cell:hover { transform: translateY(-4px); }
.hero-logo-cell img { height: 130px; width: auto; max-width: 100%; object-fit: contain; }

/* ---------- Section shared ---------- */
section { padding: 110px 0; scroll-margin-top: 90px; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-top: 14px;
  text-transform: uppercase;
  line-height: 1.08;
}
.section-head p { margin-top: 18px; font-size: 1.05rem; color: var(--ink-soft); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
#wat-wij-bieden .section-head { max-width: 900px; }
#wat-wij-bieden .section-head h2 { white-space: nowrap; }

/* ---------- Offer / pillars ---------- */
.offer { background: var(--bg); }
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pillar:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--kt-pink);
  min-width: 40px;
}
.pillar h4 { font-size: 1.05rem; text-transform: uppercase; margin-bottom: 6px; color: var(--kt-violet); }
.pillar p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- World / wereldwijd ---------- */
.world {
  background: var(--kt-black);
  color: var(--white);
  overflow: hidden;
}
.world .eyebrow { color: var(--kt-yellow); }
.world .eyebrow::before { background: var(--kt-pink); }

/* ---------- Interactive world map ---------- */
.map-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.map-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 20px;
}
.world-map-svg { width: 100%; height: auto; display: block; }
.map-countries path {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 0.6;
  transition: fill 0.15s ease, stroke 0.15s ease;
}
.map-countries .map-country-active,
.map-countries .map-country-active path {
  fill: rgba(255, 215, 0, 0.24);
  stroke: rgba(255, 215, 0, 0.55);
}
.map-countries .map-country-active:hover,
.map-countries .map-country-active:hover path {
  fill: rgba(255, 215, 0, 0.6);
  stroke: rgba(255, 215, 0, 1);
}
.map-countries .map-country-active:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.65));
}
.map-countries .map-country-selected,
.map-countries .map-country-selected path {
  fill: rgba(150, 0, 100, 0.38);
  stroke: var(--kt-pink);
}
.map-countries .map-country-filtered,
.map-countries .map-country-filtered path {
  fill: rgba(255, 215, 0, 0.55);
  stroke: rgba(255, 215, 0, 0.95);
}

.map-side { display: flex; flex-direction: column; gap: 18px; }
.map-label-filter { display: flex; gap: 10px; justify-content: center; }
.map-label-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  padding: 4px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.map-label-filter-btn img { width: 100%; height: 100%; object-fit: contain; display: block; margin: auto; }
.map-label-filter-btn:hover { transform: translateY(-3px); }
.map-label-filter-btn.is-active { background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 2px var(--kt-yellow); }

.map-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-panel-default p { margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.map-panel-result[hidden] { display: none; }
.map-panel-flag { font-size: 2.4rem; line-height: 1; display: block; margin-bottom: 10px; }
.map-panel-result h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 18px;
}
.map-panel-labels { display: flex; flex-direction: column; gap: 10px; }
.map-label-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
}
.map-label-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}
.map-label-chip--kt { background: rgba(255, 215, 0, 0.35); }
.map-label-chip--sk { background: rgba(230, 83, 0, 0.35); }
.map-label-chip--hk { background: rgba(51, 49, 50, 0.55); }
.map-label-chip--uk { background: rgba(0, 191, 111, 0.4); }

.map-panel-filter-result[hidden] { display: none; }
.map-panel-filter-result h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 18px;
}
.map-panel-countries { display: flex; flex-wrap: wrap; gap: 10px; }
.map-country-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 215, 0, 0.25);
  color: var(--white);
}


/* ---------- Labels ---------- */
.label-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
}
.label-logo-chip img { height: 32px; width: auto; }

/* ---------- Reviews marquee ---------- */
.reviews-banner {
  background: linear-gradient(180deg, var(--sk-orange) 0%, var(--bg) 100%);
  padding: 96px 0 80px;
  overflow: hidden;
}
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.reviews-stars { color: var(--kt-yellow); font-size: 1.4rem; letter-spacing: 0.06em; }
.reviews-score { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.reviews-count { font-size: 0.9rem; font-weight: 700; color: rgba(255, 255, 255, 0.85); }
.reviews-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 48px;
}
.reviews-marquee { width: 100%; overflow: hidden; }
.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  animation: reviews-scroll 70s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border: 1.5px solid var(--kt-violet);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 28px -16px rgba(30, 6, 35, 0.4);
}
.review-card-stars { color: var(--kt-yellow); font-size: 1rem; letter-spacing: 0.06em; }
.review-card-text { font-size: 0.92rem; line-height: 1.55; color: var(--ink); flex: 1 1 auto; }
.review-card-name { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }

@keyframes reviews-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }

.contact-label-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.contact-label-btn {
  --accent: var(--kt-violet);
  position: relative;
  aspect-ratio: 4.5 / 1;
  min-width: 0;
  background: color-mix(in srgb, var(--accent) 65%, black 35%);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-label-btn:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(0,0,0,0.55); }
.contact-label-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 60%;
  object-fit: contain;
}
.contact-label-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.contact-label-btn:hover .contact-label-arrow {
  transform: translate(3px, -3px);
  background: rgba(255, 255, 255, 0.3);
}

.contact-label-btn--kt { --accent: var(--kt-violet); }
.contact-label-btn--sk { --accent: var(--sk-orange); background: var(--sk-orange); }
.contact-label-btn--hk { --accent: var(--hk-anthracite); }
.contact-label-btn--uk { --accent: var(--uk-teal); }

.contact-general { text-align: center; }
.contact-general-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  text-transform: uppercase;
  color: var(--kt-violet);
  margin: 0 0 14px;
}
.contact-general-row { font-size: 1.05rem; font-weight: 700; }
.contact-general-row a:hover { color: var(--kt-violet); }
.contact-general-row .sep { margin: 0 14px; color: var(--line); }

.contact-form {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: left;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.contact-form-field { display: flex; flex-direction: column; gap: 8px; }
.contact-form-field--full { grid-column: 1 / -1; }
.contact-form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.contact-form-field input,
.contact-form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.contact-form-field textarea { resize: vertical; min-height: 110px; }
.contact-form-field input:focus,
.contact-form-field textarea:focus { outline: none; border-color: var(--kt-violet); }
.contact-form-submit { width: 100%; }
.contact-form-submit:disabled { opacity: 0.7; cursor: default; }

.contact-thanks-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 6, 35, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.contact-thanks-overlay[hidden] { display: none; }
.contact-thanks-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.4);
}
.contact-thanks-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink-soft);
}
.contact-thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--kt-yellow);
  color: var(--kt-black);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-thanks-modal h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-thanks-modal p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Label sections (inline one-pagers) ---------- */
.label-hero {
  --accent: var(--kt-violet);
  --accent-dark: var(--kt-black);
  position: relative;
  padding: 80px 0 70px;
  color: var(--white);
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--accent) 40%);
  overflow: hidden;
}
.label-hero-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 40px;
}
.label-hero-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.label-hero-logo img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}
.label-hero-title {
  font-family: var(--label-font, var(--font-display));
  font-size: clamp(1.85rem, 3.1vw, 2.85rem);
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}
.label-hero-title em { font-style: normal; color: var(--kt-yellow); }
.label-hero .hero-actions .btn-primary {
  background: var(--mission-color);
}
.label-hero .hero-actions .btn-primary:hover { box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--mission-color) 55%, transparent); }

.label-hero .hero-stats {
  border-top: none;
  padding: 26px 10px;
  gap: 0;
  max-width: 1100px;
  background: var(--mission-color);
  border-radius: 999px;
}
.hero-stats--3 { grid-template-columns: repeat(3, 1fr); margin: 0 auto; }
.label-hero .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.label-hero .stat:not(:last-child) { border-right: 1px solid rgba(30, 6, 35, 0.15); }
.label-hero .stat .stat-num { color: var(--kt-black); }
.label-hero .stat .stat-label {
  color: rgba(30, 6, 35, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.label-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1340px;
  margin: 0 auto 28px;
  align-items: start;
  text-align: left;
}
.label-hero-col { display: flex; flex-direction: column; gap: 18px; }
.label-hero-col--right { padding-top: 0; }

.label-story {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0;
}
.label-mission p {
  font-family: var(--label-font, var(--font-display));
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.3;
  color: var(--mission-color, var(--white));
  margin: 0;
}

.label-hero--kt { --accent: var(--kt-violet); --accent-dark: var(--kt-black); --mission-color: var(--kt-yellow); }
.label-hero--uk { --accent: var(--uk-teal); --accent-dark: var(--kt-violet); --mission-color: var(--uk-neon); }
.label-hero--hk { --accent: var(--hk-black); --accent-dark: var(--uk-teal); --mission-color: var(--hk-orange); }
.label-hero--sk { --accent: var(--sk-orange); --accent-dark: var(--hk-black); --mission-color: var(--sk-green); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--kt-black);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 0.95rem; }
.footer-brand span b { color: var(--kt-yellow); font-weight: inherit; }
.footer-links { display: flex; gap: 24px; font-size: 0.85rem; }
.footer-links a:hover { color: var(--kt-yellow); }
.footer-note { font-size: 0.78rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillars-row { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats--3 { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .hero-split { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { order: -1; max-width: 380px; }
  .hero-mission { max-width: none; }
  .hero-stats--left { max-width: none; }
  .hero h1 { white-space: normal; }
  .label-hero-title { white-space: normal; }
  #wat-wij-bieden .section-head h2 { white-space: normal; }
  #wat-wij-bieden .section-head { max-width: 680px; }
  .label-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .label-hero-col--right { padding-top: 0; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-ghost, .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .brand-word { font-size: 1.15rem; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--kt-black);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .site-header.nav-open .nav-links a { color: var(--white); }
  section { padding: 70px 0; }
  .hero { padding-top: 120px; }
  .hero-actions { margin-bottom: 46px; }
  .contact-label-grid { max-width: 320px; }
  .contact-label-btn { aspect-ratio: 1 / 1; }
  .contact-label-btn img { width: 76%; height: 76%; }
  .contact-label-arrow { width: 24px; height: 24px; right: 10px; bottom: 10px; font-size: 0.85rem; }
  .contact-general-row { display: flex; flex-direction: column; gap: 10px; }
  .contact-general-row .sep { display: none; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
