/* ============================================
   Spiegelcollectief — Landingspagina
   Huisstijl: paars · oranje · geel · lichtblauw
   ============================================ */

@font-face {
  font-family: "Rounded Elegance";
  src: url("assets/fonts/RoundedElegance-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-white:   #fffdfc;
  --c-blue:    #e3f1fb;
  --c-yellow:  #f5b139;
  --c-orange:  #d74d23;
  --c-magenta: #891e6c;
  --c-purple:  #4d2256;
  --c-ink:     #271634;

  --c-text:    #271634;
  --c-muted:   #5a4863;

  --gradient-hero:
    radial-gradient(60% 60% at 12% 30%, rgba(245,177,57,.55) 0%, rgba(245,177,57,0) 60%),
    radial-gradient(70% 70% at 90% 25%, rgba(137,30,108,.55) 0%, rgba(137,30,108,0) 60%),
    radial-gradient(55% 55% at 50% 90%, rgba(215,77,35,.45) 0%, rgba(215,77,35,0) 60%),
    linear-gradient(180deg, var(--c-blue) 0%, var(--c-white) 100%);

  --gradient-orb: radial-gradient(circle at 35% 35%, #c14fa1 0%, #891e6c 35%, #4d2256 75%, #271634 100%);

  --font-display: "Rounded Elegance", "Quicksand", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 22px;
  --shadow-soft: 0 20px 60px -20px rgba(39, 22, 52, 0.18);
  --shadow-lift: 0 30px 80px -25px rgba(39, 22, 52, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a {
  color: var(--c-magenta);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--c-orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-purple);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; color: var(--c-magenta); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 253, 252, 0.78);
  border-bottom: 1px solid rgba(137, 30, 108, 0.08);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--c-purple);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--c-orange);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--c-magenta);
  color: var(--c-white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--c-orange); color: var(--c-white) !important; }

.menu-toggle { display: none; }

/* ============ HERO — soft blue with subtle orange gloed ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background:
    radial-gradient(55% 60% at 88% 80%, rgba(215, 77, 35, .14) 0%, rgba(215, 77, 35, 0) 60%),
    radial-gradient(45% 55% at 20% 30%, rgba(245, 177, 57, .10) 0%, rgba(245, 177, 57, 0) 60%),
    linear-gradient(180deg, var(--c-blue) 0%, #f0f7fc 55%, var(--c-white) 100%);
  display: flex;
  align-items: center;
}
.hero .container { width: 100%; position: relative; z-index: 2; }
.hero-blob { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* hero copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-orange);
  margin-bottom: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-eyebrow .dash {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--c-orange);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  margin: 0 0 22px;
  line-height: 1.05;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--c-magenta), var(--c-orange) 60%, var(--c-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(137, 30, 108, 0.14);
}
.hero-meta-text {
  font-size: 0.9rem;
  color: var(--c-muted);
}
.hero-meta-text strong {
  color: var(--c-purple);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(95deg, var(--c-magenta), var(--c-orange) 60%, var(--c-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--c-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.btn-primary {
  background: var(--c-magenta);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-orange);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-ghost {
  background: transparent;
  color: var(--c-purple);
  border: 1.5px solid var(--c-purple);
}
.btn-ghost:hover {
  background: var(--c-purple);
  color: var(--c-white);
}
.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* hero visual: logo on a soft wash, with one editorial annotation */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  justify-self: end;
}

/* one soft watercolor wash behind the logo — like the brand presentation */
.hero-wash {
  position: absolute;
  inset: 8% -4% 10% 4%;
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 35% 35%, rgba(245, 177, 57, .55) 0%, rgba(245, 177, 57, 0) 60%),
    radial-gradient(55% 55% at 70% 70%, rgba(137, 30, 108, .35) 0%, rgba(137, 30, 108, 0) 60%),
    radial-gradient(50% 50% at 55% 40%, rgba(215, 77, 35, .35) 0%, rgba(215, 77, 35, 0) 65%);
  filter: blur(50px);
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 96%;
  height: 96%;
  margin: 2%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(77, 34, 86, 0.18));
}

/* small handwritten-feel annotation pointing at the logo */
.hero-mark {
  position: absolute;
  bottom: 6%;
  left: -4%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--c-purple);
  pointer-events: none;
}
.hero-mark svg {
  width: 70px;
  height: 40px;
  opacity: .6;
  transform: rotate(-4deg);
}
.hero-mark em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--c-purple);
  opacity: .75;
  transform: rotate(-2deg) translateY(-6px);
}

/* hide unused old orbs */
.orb, .orb-purple, .orb-yellow, .orb-orange, .orb-small { display: none; }

/* hide unused */
.hero-glow, .ring, .hero-floaters, .poster, .float-portrait,
.hero-top, .hero-display, .hero-foot, .hero-card { display: none; }

/* trust strip (used in hero-foot-right) */
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-white);
  box-shadow: 0 6px 14px rgba(39,22,52,.18);
  margin-left: -14px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-meta-text {
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.45;
  text-align: left;
}
.hero-meta-text strong {
  color: var(--c-purple);
  font-weight: 600;
  font-size: 1rem;
}

/* ============ SECTIONS ============ */
section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-orange);
  margin-bottom: 14px;
  display: block;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--c-muted);
}

/* ============ OVER ONS ============ */
.about {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(227,241,251,.6) 0%, rgba(227,241,251,0) 60%),
    var(--c-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-copy h2 { color: var(--c-purple); }
.about-copy .lead {
  font-size: 1.18rem;
  color: var(--c-text);
  margin-bottom: 22px;
}
.about-copy .muted {
  color: var(--c-muted);
}

/* placeholder for upcoming group photo */
.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 90%, rgba(245, 177, 57, .35) 0%, transparent 65%),
    radial-gradient(60% 60% at 10% 10%, rgba(215, 77, 35, .25) 0%, transparent 70%),
    linear-gradient(160deg, var(--c-blue) 0%, #f7e9f1 60%, #efe0ec 100%);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-placeholder {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-purple);
  letter-spacing: 0.02em;
  opacity: .55;
}
.about-photo.has-image {
  aspect-ratio: auto;
  padding: 14px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 12px);
  display: block;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-visual .tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual .tile.tile-orange { background: linear-gradient(140deg, var(--c-orange), #b53815); }
.about-visual .tile.tile-c      { background: linear-gradient(140deg, #f7e9f1, var(--c-blue)); }
.about-visual .tile.tile-c.tile-mirror { background: linear-gradient(140deg, var(--c-blue), #d0e5f4); transform: translateY(28px); }
.about-visual .tile.tile-blob   { background: linear-gradient(140deg, var(--c-purple), var(--c-ink)); transform: translateY(28px); }

/* tile-orange: white circle (orb) inside */
.about-visual .tile-circle {
  width: 52%; height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #ffe3c0 55%, #ffd29b 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,.18) inset, 0 18px 30px rgba(0,0,0,.18);
}

/* tile-c shape: the brand C beeldmerk recreated with css */
.about-visual .tile-cshape {
  width: 64%; height: 64%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, #ff9a6f 0%, #d74d23 30%, #891e6c 75%, #4d2256 100%);
  position: relative;
  box-shadow: 0 20px 40px rgba(77,34,86,.25);
}
.about-visual .tile-cshape::before {
  content: "";
  position: absolute;
  width: 34%; height: 34%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #b04a96 0%, #891e6c 55%, #4d2256 100%);
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}
.about-visual .tile.tile-mirror .tile-cshape { transform: scaleX(-1); }

/* tile-blob: large purple orb */
.about-visual .tile-orb {
  width: 56%; height: 56%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 45%, var(--c-purple) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* about list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.about-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(137, 30, 108, 0.10);
  color: var(--c-text);
  font-size: 0.98rem;
}
.about-list li:last-child { border-bottom: 1px solid rgba(137, 30, 108, 0.10); }
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff9a6f, var(--c-orange));
}

/* ============ KERNWAARDEN ============ */
.values {
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-blue) 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(137,30,108,.06);
  transition: transform .2s ease, box-shadow .25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.value-card .icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .icon img { width: 100%; height: 100%; object-fit: contain; }

.value-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--c-muted);
  font-size: 0.97rem;
  margin: 0;
}

/* ============ COLLECTIEF (MENSEN) ============ */
.people { background: var(--c-white); }

.people-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  color: var(--c-muted);
  font-size: 1.1rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.person {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.person:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

/* coloured gradient top bar — cycles through brand combos per card */
.person::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-magenta), var(--c-orange));
  z-index: 3;
}
.person:nth-child(2)::before { background: linear-gradient(90deg, var(--c-orange), var(--c-yellow)); }
.person:nth-child(3)::before { background: linear-gradient(90deg, var(--c-purple), var(--c-magenta)); }
.person:nth-child(4)::before { background: linear-gradient(90deg, var(--c-yellow), var(--c-orange)); }
.person:nth-child(5)::before { background: linear-gradient(90deg, var(--c-magenta), var(--c-purple)); }
.person:nth-child(6)::before { background: linear-gradient(90deg, var(--c-orange), var(--c-magenta)); }
.person:nth-child(7)::before { background: linear-gradient(90deg, var(--c-purple), var(--c-orange)); }

.person-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  padding: 18px 18px 0;
  background: linear-gradient(160deg, #f7e9f1 0%, var(--c-blue) 55%, #fce6da 100%);
}
.person:nth-child(2) .person-photo { background: linear-gradient(160deg, #fff1d6 0%, #fce6da 55%, var(--c-blue) 100%); }
.person:nth-child(3) .person-photo { background: linear-gradient(160deg, var(--c-blue) 0%, #efe0ec 55%, #fce6da 100%); }
.person:nth-child(4) .person-photo { background: linear-gradient(160deg, #fce6da 0%, #fff1d6 55%, var(--c-blue) 100%); }
.person:nth-child(5) .person-photo { background: linear-gradient(160deg, #f7e9f1 0%, var(--c-blue) 50%, #fff1d6 100%); }
.person:nth-child(6) .person-photo { background: linear-gradient(160deg, #fce6da 0%, #f7e9f1 50%, var(--c-blue) 100%); }
.person:nth-child(7) .person-photo { background: linear-gradient(160deg, var(--c-blue) 0%, #fce6da 50%, #f7e9f1 100%); }

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform .6s ease;
  position: relative;
  z-index: 1;
}
.person:hover .person-photo img { transform: scale(1.03); }

/* decorative orb behind photo */
.person-photo::before {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 40%, var(--c-purple) 100%);
  top: -22px;
  right: -22px;
  z-index: 0;
  filter: blur(0.5px);
  opacity: .9;
}
.person:nth-child(2) .person-photo::before { background: radial-gradient(circle at 35% 35%, #f9c469 0%, var(--c-yellow) 40%, var(--c-orange) 100%); }
.person:nth-child(3) .person-photo::before { background: radial-gradient(circle at 35% 35%, #ff8a5b 0%, var(--c-orange) 40%, var(--c-magenta) 100%); }
.person:nth-child(4) .person-photo::before { background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 40%, var(--c-purple) 100%); }
.person:nth-child(5) .person-photo::before { background: radial-gradient(circle at 35% 35%, #f9c469 0%, var(--c-yellow) 40%, var(--c-orange) 100%); }
.person:nth-child(6) .person-photo::before { background: radial-gradient(circle at 35% 35%, #ff8a5b 0%, var(--c-orange) 40%, var(--c-purple) 100%); }
.person:nth-child(7) .person-photo::before { background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 40%, var(--c-purple) 100%); }

/* small bottom orb accent */
.person-photo::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 60%, var(--c-purple) 100%);
  bottom: -8px;
  left: 28px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(77, 34, 86, 0.3);
}
.person:nth-child(2) .person-photo::after { background: radial-gradient(circle at 35% 35%, #f9c469 0%, var(--c-yellow) 60%, var(--c-orange) 100%); }
.person:nth-child(4) .person-photo::after { background: radial-gradient(circle at 35% 35%, #f9c469 0%, var(--c-yellow) 60%, var(--c-orange) 100%); }
.person:nth-child(6) .person-photo::after { background: radial-gradient(circle at 35% 35%, #ff8a5b 0%, var(--c-orange) 60%, var(--c-magenta) 100%); }

.person-body {
  padding: 28px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.person-body h3 {
  margin-bottom: 4px;
  color: var(--c-purple);
}
.person-body .role {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-orange);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.person-body p {
  color: var(--c-muted);
  font-size: 0.96rem;
  margin-bottom: 18px;
  flex: 1;
}
.person-body .quote {
  border-left: 3px solid var(--c-yellow);
  padding-left: 14px;
  font-style: italic;
  color: var(--c-purple);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.person-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-magenta);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: auto;
}
.person-link:hover .arrow { transform: translateX(4px); }

/* ============ TRAINING — promo block ============ */
.training {
  padding: 60px 0 100px;
  background: var(--c-white);
}

.training-block {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  padding: 70px 70px;
  color: var(--c-white);
  text-decoration: none;
  background:
    radial-gradient(50% 70% at 90% 90%, rgba(245,177,57,.45) 0%, rgba(245,177,57,0) 60%),
    radial-gradient(55% 75% at 10% 0%, rgba(215,77,35,.35) 0%, rgba(215,77,35,0) 65%),
    linear-gradient(135deg, var(--c-magenta) 0%, var(--c-purple) 55%, var(--c-ink) 100%);
  box-shadow: var(--shadow-lift);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.training-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px -30px rgba(39,22,52,.45);
  color: var(--c-white);
}

.training-block-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.t-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c14fa1 0%, var(--c-magenta) 35%, var(--c-purple) 75%, var(--c-ink) 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.t-orb-1 { width: 320px; height: 320px; top: -90px; right: -80px; opacity: .85; }
.t-orb-2 {
  width: 120px; height: 120px;
  bottom: -30px; right: 28%;
  background: radial-gradient(circle at 35% 35%, #f9c469 0%, var(--c-yellow) 35%, var(--c-orange) 75%, #6b1e0d 100%);
  opacity: .85;
}
.t-orb-3 {
  width: 60px; height: 60px;
  top: 38%; right: 18%;
  background: radial-gradient(circle at 35% 35%, #ff8a5b 0%, var(--c-orange) 40%, var(--c-magenta) 100%);
  opacity: .8;
}

.training-block-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.training-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-yellow);
  margin-bottom: 22px;
}
/* dash removed per feedback */

.training-block h2 {
  color: var(--c-white);
  margin: 0 0 22px;
  max-width: 600px;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

.training-block p {
  color: rgba(255, 253, 252, 0.85);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 28px;
}
.training-block p em {
  color: var(--c-yellow);
  font-style: normal;
  font-weight: 500;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.training-tags span {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  background: rgba(255, 253, 252, 0.1);
  border: 1px solid rgba(255, 253, 252, 0.2);
  color: rgba(255, 253, 252, 0.92);
  backdrop-filter: blur(6px);
}

.training-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-white);
}
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-size: 1.4rem;
  transition: transform .25s ease, background .25s ease;
}
.training-block:hover .arrow-circle {
  transform: translateX(8px) rotate(-10deg);
  background: var(--c-white);
}

/* ============ CONTACT ============ */
.contact {
  background: var(--c-blue);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--c-purple); }
.contact-info .lead {
  font-size: 1.15rem;
  color: var(--c-text);
  margin-bottom: 30px;
  max-width: 460px;
}

.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-block .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-magenta);
  font-size: 1.2rem;
}
.contact-block h4 {
  margin: 0 0 4px;
  color: var(--c-purple);
}
.contact-block a { color: var(--c-text); font-weight: 500; }
.contact-block a:hover { color: var(--c-magenta); }
.contact-block p { margin: 0; color: var(--c-muted); font-size: 0.95rem; }

.contact-form {
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-purple);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(137,30,108,0.18);
  border-radius: 12px;
  background: var(--c-white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-magenta);
  box-shadow: 0 0 0 3px rgba(137,30,108,0.12);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ============ FOOTER ============ */
.footer {
  background: var(--c-ink);
  color: rgba(255, 253, 252, 0.75);
  padding: 70px 0 30px;
  font-size: 0.95rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,253,252,0.1);
  margin-bottom: 30px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-logo-mark { height: 64px; width: auto; }
.footer-logo-word { height: 50px; width: auto; }
.footer-brand p { max-width: 360px; color: rgba(255,253,252,0.65); }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-yellow);
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,253,252,0.75); }
.footer a:hover { color: var(--c-yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,253,252,0.5);
}

/* ============ MODAL (Disclaimer) ============ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(39,22,52,0.7);
  backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.modal.open { display: flex; }
.modal-content {
  background: var(--c-white);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 50px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--c-muted);
  line-height: 1;
}
.modal-close:hover { color: var(--c-magenta); }

/* ============ RESPONSIVE ============ */
@media (max-width: 780px) {
  .hero { padding: 28px 0 56px; min-height: auto; }

  /* Hero stacks to a single column on mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-visual {
    order: -1;                 /* logo-wash als compacte merkbanner bovenaan */
    max-width: 210px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    margin-bottom: 16px;
  }
  .hero-lead {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero meta: stack avatars above text on mobile zodat ze nooit overlappen */
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-avatars img {
    width: 38px; height: 38px;
    margin-left: -10px;
    border-width: 2px;
  }
  .hero-meta-text {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .training-block { padding: 44px 32px; border-radius: 24px; }
  .training-block h2 { font-size: 1.7rem; }
  .t-orb-1 { width: 200px; height: 200px; }
  .t-orb-2 { width: 70px; height: 70px; }
  .t-orb-3 { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 70px 0; }

  .nav-links {
    position: absolute;
    top: 100%; right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-soft);
    min-width: 220px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle {
    display: block;
    background: none;
    border: 0;
    font-size: 1.6rem;
    color: var(--c-purple);
    cursor: pointer;
  }
}

@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 30px 24px; }
  .contact-form { padding: 26px; }
  .training-card { padding: 28px; }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-14px) translateX(4px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-6px); }
}
.ring-center { animation: float 7s ease-in-out infinite; }
.orb-1 { animation: float 8s ease-in-out infinite; }
.orb-6 { animation: floatAlt 7s ease-in-out infinite 1.5s; }
.orb-7 { animation: float 9s ease-in-out infinite 2s; }
