/* ═══════════════════════════════════════════════
   DE DURFPLAATS — Gedeelde stylesheet
   Conform brandguide v1
═══════════════════════════════════════════════ */

/* Alle fonts zelf-gehost. Geen Google Fonts request meer (privacy + perf).
   Fraunces 900 wordt nog apart gepreload in HTML head als LCP-font.
   Variable fonts: DM Sans en Fraunces-italic dekken alle gewichten in 1 file. */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/fraunces-900-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/fraunces-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/fraunces-italic-variable-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('/fonts/dm-sans-variable-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ── */
:root {
  --navy:       #1A2E5A;
  --blue:       #2A52A0;
  --blue-mid:   #5B8BDF;
  --coral:      #E8856A;
  --teal:       #3A9E8F;
  --gold:       #C9910A;
  --gold-lt:    #F2C94C;
  --purple:     #8B5EA4;
  --red:        #C0392B;
  --green:      #27AE60;
  --orange:     #E67E22;
  --magenta:    #C0195C;
  --blush:      #F4A494;
  --coral-btn:  #B84D30; /* Donkerder coral voor knoppen — wit contrast 4.73:1 (WCAG AA) */
  --warm:       #FAF8F5;
  --warm-grey:  #F0EDE8;
  --mid-grey:   #D6D1C9;
  --muted:      #8A8070;
  --body:       #2C2416;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'DM Sans', Helvetica, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius:    16px;   /* alias for --radius-md */
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--warm);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 68px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── UTILITY ── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 60px; }

/* ── SKIP NAVIGATION (WCAG 2.4.1) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--coral);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* ── FOCUS VISIBLE (WCAG 2.4.7) ── */
/* Verwijder browser-default alleen als we zelf een focus stijl bieden */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Nav links op donkere achtergrond: gebruik lichtere outline */
.site-nav :focus-visible,
.mobile-menu :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
  outline-offset: 4px;
}
/* Buttons: al voorzien van border-radius, sluit focus mooi aan */
.btn:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(232,133,106,0.18);
}
.btn--outline-white:focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.20);
}
/* Form inputs ─ bewaar bestaande :focus, voeg focus-visible toe */
.form-control:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26,46,90,0.12);
}
/* Accordion knoppen */
.accordion__header:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ── EYEBROW / LABEL ── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.eyebrow--teal  { color: var(--teal); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow--blue  { color: var(--blue-mid); }
.eyebrow--white { color: rgba(255,255,255,0.6); }

/* ── PILL BADGE ── */
.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pill--campus      { background: rgba(42,82,160,0.15); color: var(--blue); }
.pill--impact      { background: rgba(58,158,143,0.15); color: var(--teal); }
.pill--investment  { background: rgba(201,145,10,0.15); color: var(--gold); }
.pill--white       { background: rgba(255,255,255,0.25); color: #fff; }
.pill--coral       { background: rgba(232,133,106,0.15); color: var(--coral); }
.pill--dark        { background: rgba(26,46,90,0.08); color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--navy);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: #d4714f;
  border-color: #d4714f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,133,106,0.35);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn--ghost {
  padding: 0;
  border: none;
  background: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--ghost:hover { gap: 10px; }
.btn--ghost-white { color: #fff; }
.btn--ghost-white:hover { color: rgba(255,255,255,0.75); }
.btn--sm { padding: 8px 18px; font-size: 12px; }
.btn--lg { padding: 15px 36px; font-size: 15px; }

.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn--ghost:hover .btn-arrow { transform: translateX(4px); }

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-nav__wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav__links a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.site-nav__links a:hover,
.site-nav__links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.site-nav__links a.active {
  color: #fff;
}
/* Discipline nav — compact pill per discipline kleur */
.site-nav__links a[href*="campus"],
.site-nav__links a[href*="impact"],
.site-nav__links a[href*="startups"] {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 13px;
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
}
.site-nav__links a[href*="campus"]   { background: rgba(91,139,223,0.20); }
.site-nav__links a[href*="impact"]   { background: rgba(58,158,143,0.20); }
.site-nav__links a[href*="startups"] { background: rgba(201,145,10,0.20);  }

.site-nav__links a[href*="campus"]:hover   { background: rgba(91,139,223,0.36); color: #fff; }
.site-nav__links a[href*="impact"]:hover   { background: rgba(58,158,143,0.36); color: #fff; }
.site-nav__links a[href*="startups"]:hover { background: rgba(201,145,10,0.36);  color: #fff; }

/* Colored dot inside each pill */
.site-nav__links a[href*="campus"]::before,
.site-nav__links a[href*="impact"]::before,
.site-nav__links a[href*="startups"]::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  position: relative; top: -1px;
}
.site-nav__links a[href*="campus"]::before   { background: #5B8BDF; }
.site-nav__links a[href*="impact"]::before   { background: #3A9E8F; }
.site-nav__links a[href*="startups"]::before { background: #C9910A; }

/* Separator after the 3 discipline pills */
.site-nav__links li:nth-child(3) {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.site-nav__cta { margin-left: 16px; }


/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 150;
  padding: 32px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 14px;
  padding: 10px 22px;
  border-bottom: none;
  justify-content: center;
}

/* Discipline items in mobile menu — pill met kleur + dot */
.mobile-menu a[href*="campus"],
.mobile-menu a[href*="impact"],
.mobile-menu a[href*="startups"] {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 16px;
  border-bottom: none;
  margin: 0 -4px;
  white-space: nowrap;
}
.mobile-menu a[href*="campus"]   { background: rgba(91,139,223,0.18); }
.mobile-menu a[href*="impact"]   { background: rgba(58,158,143,0.18); }
.mobile-menu a[href*="startups"] { background: rgba(201,145,10,0.18);  }

.mobile-menu a[href*="campus"]:hover   { background: rgba(91,139,223,0.32); color: #fff; }
.mobile-menu a[href*="impact"]:hover   { background: rgba(58,158,143,0.32); color: #fff; }
.mobile-menu a[href*="startups"]:hover { background: rgba(201,145,10,0.32);  color: #fff; }

.mobile-menu a[href*="campus"]::before,
.mobile-menu a[href*="impact"]::before,
.mobile-menu a[href*="startups"]::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: relative; top: -1px;
}
.mobile-menu a[href*="campus"]::before   { background: #5B8BDF; }
.mobile-menu a[href*="impact"]::before   { background: #3A9E8F; }
.mobile-menu a[href*="startups"]::before { background: #C9910A; }

.mobile-menu .section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 20px 0 8px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Mobile toggle */
.nav-toggle { display: none; }

/* ── HERO (generic) ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,139,223,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.hero__content {}
.hero__title {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SECTION ── */
.section {
  padding: 96px 0;
}
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }
.section__title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.section__title em { font-style: italic; color: var(--coral); }
.section__desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 12px;
}
.divider-line {
  width: 40px; height: 3px;
  background: var(--coral);
  border-radius: 2px;
  margin: 16px 0 0;
}
.divider-line--center { margin: 16px auto 0; }
.divider-line--teal { background: var(--teal); }
.divider-line--gold { background: var(--gold); }

/* Dark section */
.section--dark {
  background: var(--navy);
  color: #fff;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__desc { color: rgba(255,255,255,0.55); }

/* Tinted section */
.section--tinted { background: var(--warm-grey); }

/* ── DISCIPLINE CARDS ── */
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.discipline-card {
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease;
}
.discipline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.discipline-card--campus     { background: var(--blue); }
.discipline-card--impact     { background: var(--teal); }
.discipline-card--investment { background: var(--gold); }

.discipline-card__deco {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.discipline-card:hover .discipline-card__deco {
  transform: scale(1.3) translate(-12px, -12px);
}
.discipline-card__deco2 {
  position: absolute;
  bottom: 80px; right: 40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s, opacity 0.4s ease;
}
.discipline-card:hover .discipline-card__deco2 {
  transform: scale(1.4) translate(10px, -8px);
  opacity: 0.15;
}
.discipline-card__label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}
.discipline-card__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  margin-top: -6px;
}
.discipline-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  margin-top: 16px;
}
.discipline-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}
.discipline-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.discipline-card__link:hover { gap: 10px; border-color: #fff; }

/* ── CARDS (generic) ── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* Legacy card__image — hidden, replaced by card__header numeral system */
.card__image { display: none; }

/* Numeral header system */
.card__header {
  height: 130px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 28px 20px;
}
.card__header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.card__numeral {
  position: absolute;
  top: -20px;
  right: -6px;
  font-family: var(--serif);
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -5px;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
.card:hover .card__numeral { opacity: 0.13; }

/* Card colour variants */
.card--blue  .card__header { background: linear-gradient(135deg, rgba(42,82,160,0.05) 0%, rgba(42,82,160,0.02) 100%); }
.card--blue  .card__header::before { background: var(--blue); }
.card--blue  .card__numeral { color: var(--blue); }
.card--teal  .card__header { background: linear-gradient(135deg, rgba(58,158,143,0.05) 0%, rgba(58,158,143,0.02) 100%); }
.card--teal  .card__header::before { background: var(--teal); }
.card--teal  .card__numeral { color: var(--teal); }
.card--gold  .card__header { background: linear-gradient(135deg, rgba(201,145,10,0.06) 0%, rgba(201,145,10,0.02) 100%); }
.card--gold  .card__header::before { background: var(--gold); }
.card--gold  .card__numeral { color: var(--gold); }
.card--coral .card__header { background: linear-gradient(135deg, rgba(232,133,106,0.06) 0%, rgba(232,133,106,0.02) 100%); }
.card--coral .card__header::before { background: var(--coral); }
.card--coral .card__numeral { color: var(--coral); }

.card__body { padding: 20px 28px 28px; border-top: 1px solid var(--warm-grey); }
.card__eyebrow { margin-bottom: 10px; }
.card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-top: 1px solid var(--warm-grey);
}
.card__price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}
.card__price span { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--muted); }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }

/* ── FEATURE STRIP ── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--warm-grey);
  border-bottom: 1px solid var(--warm-grey);
}
.feature-item {
  padding: 40px 32px;
  border-right: 1px solid var(--warm-grey);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── QUOTE / TESTIMONIAL ── */
.testimonial {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--serif);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; color: #fff; font-size: 15px; }
.testimonial__role { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── PRICING / PAKKETTEN ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.pricing-card--featured {
  box-shadow: 0 0 0 2px var(--coral), var(--shadow-md);
  transform: scale(1.02);
}
.pricing-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.pricing-card__header {
  padding: 36px 36px 24px;
  border-bottom: 1px solid var(--warm-grey);
}
.pricing-card__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card__tagline {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
}
.pricing-card__price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.pricing-card__price sup { font-size: 20px; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-card__price-note { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--muted); }
.pricing-card__body { padding: 28px 36px 36px; }
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card__features li.disabled {
  color: var(--muted);
  text-decoration: line-through;
}
.pricing-card__features li.disabled::before { content: '–'; color: var(--mid-grey); }

/* ── SHOP ── */
.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--mid-grey);
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.filter-btn.active-campus  { background: var(--blue); border-color: var(--blue); color: #fff; }
.filter-btn.active-impact  { background: var(--teal); border-color: var(--teal); color: #fff; }
.filter-btn.active-invest  { background: var(--gold); border-color: var(--gold); color: #fff; }

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease,
              opacity 0.25s ease, scale 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 1px 3px rgba(26,46,90,0.07), 0 4px 16px rgba(26,46,90,0.06);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--mid-grey);
}
.product-card.filter-hide {
  opacity: 0;
  scale: 0.94;
  pointer-events: none;
}
.product-card.filter-hidden { display: none; }
@media (prefers-reduced-motion: reduce) {
  .product-card.filter-hide { opacity: 0; scale: 1; transition: none; }
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26,46,90,0.10), 0 12px 32px rgba(26,46,90,0.09);
  border-color: rgba(42,82,160,0.2);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
}
.product-card__initial {
  position: absolute;
  bottom: -18px;
  right: -6px;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  opacity: 0.11;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
.product-card:hover .product-card__initial { opacity: 0.18; }
.product-card__body { padding: 20px 24px 0; flex: 1; display: flex; flex-direction: column; }
.product-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.product-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--warm-grey);
  margin: 0;
}
.product-card__footer .btn {
  width: 100%;
  justify-content: center;
}
.product-price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}
.product-price--free { color: var(--teal); }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--body);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,90,0.08);
}
.form-control--textarea { resize: vertical; min-height: 130px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,106,0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner__content {}
.cta-banner__title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-banner__desc { font-size: 15px; color: rgba(255,255,255,0.55); font-weight: 300; }
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 80px 0 40px;
  margin-top: 0;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-dots { display: flex; gap: 8px; }
.footer-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.footer-col__title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── PAGE HERO VARIANTS ── */
.page-hero { padding: 72px 0 64px; }
.page-hero--campus  { background: var(--blue); }
.page-hero--impact  { background: #2E8B7A; }
.page-hero--investment { background: #A87908; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── NOTIFICATION BANNER ── */
.notice-bar {
  background: var(--coral);
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* ── CAMPUS ACCORDION: desktop defaults (accordion verborgen, content transparant voor grid) ── */
.campus-accordion-btn { display: none; }
.campus-panel-content { display: contents; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .site-nav__inner, .site-footer__inner { padding: 0 32px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .discipline-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; padding: 48px 40px; }
}

@media (max-width: 768px) {
  .hero__title { font-size: 40px; }
  .hero__inner { padding: 60px 24px 48px; grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .section__title { font-size: 30px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-nav__links { display: none; }
  .site-nav__cta { display: none; }
  .nav-toggle { display: block; }
  .feature-strip { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .container, .container--narrow, .site-nav__inner, .site-footer__inner { padding: 0 24px; }
  .discipline-card { padding: 40px 32px; min-height: auto; }
  .cta-banner { padding: 40px 28px; flex-direction: column; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .site-footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .testimonial { padding: 36px 28px; }
  .testimonial__quote { font-size: 20px; }
  /* Cart drawer full width on mobile */
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer.open { right: 0; }
  /* Product card featured (physical book) stacks vertically */
  .product-card--featured {
    flex-direction: column !important;
    grid-column: 1 !important;
  }
  .product-card--featured .product-card__img-wrap {
    width: 100% !important;
    height: 240px !important;
  }
  /* Contact grid stacks on mobile */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Timeline stacks on mobile */
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  /* Process grid */
  .process-grid { grid-template-columns: 1fr; }
  /* Pricing card */
  .pricing-card--featured { transform: none; }
  /* Discipline cards grid resets */
  .discipline-grid { display: grid; grid-template-columns: 1fr; }
  /* Feature item borders */
  .feature-item { border-right: none; border-bottom: 1px solid var(--warm-grey); }
  .feature-item:last-child { border-bottom: none; }

  /* ─────────────────────────────────────────────────────────
     INLINE STYLE OVERRIDES
     Most page/discipline heroes use inline style="font-size:Xpx"
     etc. — these !important rules override those inline styles.
  ───────────────────────────────────────────────────────── */

  /* 1. Hero h1 font sizes (inline font-size:52/56px on all page heroes) */
  section h1 { font-size: 36px !important; line-height: 1.1 !important; }
  .hero__title { font-size: 40px !important; } /* index.html main hero */

  /* 2. Hero section vertical padding reduction */
  section[style*="padding:80px 0 72px"],
  section[style*="padding:80px 0"] { padding-top: 52px !important; padding-bottom: 40px !important; }
  section[style*="padding:72px 0 64px"] { padding-top: 44px !important; padding-bottom: 36px !important; }

  /* 3. grid-2-1 / grid-1-2: inline gap:80px → huge row-gap when stacked */
  .grid-2-1, .grid-1-2 { gap: 36px !important; }

  /* 4. Campus intro horizontal stats row: wrap & tighten gap */
  .grid-2-1 > div > [style*="display:flex"][style*="gap:32px"],
  .grid-1-2 > div > [style*="display:flex"][style*="gap:32px"] {
    flex-wrap: wrap !important; gap: 16px !important;
  }

  /* 5. CTA section h2 inline font sizes (campus/impact/startups bottom CTAs) */
  .section[style*="background:var(--blue)"] h2,
  .section[style*="background:var(--teal)"] h2,
  .section[style*="background:var(--gold)"] h2 {
    font-size: 28px !important; line-height: 1.2 !important;
  }

  /* 6. Hero action buttons — full-width on mobile */
  section[style*="background:var(--blue)"] .btn--lg,
  section[style*="background:var(--teal)"] .btn--lg,
  section[style*="background:var(--gold)"] .btn--lg,
  section[style*="background:var(--navy)"][style*="padding:"] .btn--lg {
    width: 100%; justify-content: center;
  }

  /* 7. Index about-strip stat cards */
  .section--tinted .grid-2-1 [style*="border-radius:20px"] { padding: 18px !important; }
  .section--tinted .grid-2-1 [style*="font-size:48px"] { font-size: 34px !important; }

  /* 8. Startups MedairT card: reduce padding, allow inner flex items to stack */
  #startups .container > [style*="padding:48px"] { padding: 24px !important; }
  #startups [style*="min-width:280px"] { min-width: 0 !important; }
  #startups [style*="min-width:180px"] { min-width: 0 !important; width: 100%; }

  /* 9. Approach/feature cards with inline padding */
  .grid-3 > [style*="padding:36px"] { padding: 22px !important; }
  .section--tinted .grid-3 > [style*="padding:36px"] { padding: 22px !important; }

  /* 10. Inline stat sidebar cards (impact/startups right col) */
  .grid-2-1 [style*="border-radius:var(--radius-lg)"][style*="padding:36px"],
  .grid-2-1 [style*="border-radius:var(--radius-lg)"][style*="padding:28px"] { padding: 20px !important; }
  .grid-2-1 [style*="font-size:42px"],
  .grid-2-1 [style*="font-size:40px"][style*="font-weight:900"] { font-size: 30px !important; }

  /* 11. Inline hero section paragraph text: slightly smaller */
  section[style*="background:var(--blue)"] p[style],
  section[style*="background:var(--teal)"] p[style],
  section[style*="background:var(--gold)"] p[style],
  section[style*="background:var(--navy)"][style*="padding:"] p[style] { font-size: 15px !important; }

  /* 12. Diensten notice bar inline button — no auto-margin, full width on new line */
  [style*="flex-wrap:wrap"] .btn[style*="margin-left:auto"] {
    margin-left: 0 !important; width: 100%; justify-content: center; margin-top: 8px;
  }

  /* 13. Startups/impact blockquote-style cards */
  .grid-2-1 > div > [style*="border-left:3px solid"][style*="padding:32px"],
  .grid-2-1 > div > [style*="border-left: 3px solid"][style*="padding:32px"] { padding: 20px !important; }

  /* 14. Contact sidebar inline grey card (reactietijd) */
  .contact-grid [style*="padding:32px"][style*="background:var(--warm-grey)"] { padding: 20px !important; }

  /* 15. CTA banner bare email link — make visible and tappable on dark bg */
  .cta-banner__actions a:not(.btn) {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    text-align: center;
  }

  /* 16. Inline 2-col grids (not icon+text grids) → single column on mobile
     Excluded: 24px/56px/68px/80px/96px 1fr patterns (icon rows — stay 2-col) */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1.35fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* 17. Large gaps become unacceptable when grids stack vertically */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:80px"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:72px"],
  [style*="grid-template-columns:1.35fr 1fr"][style*="gap:72px"],
  [style*="grid-template-columns:1fr 2fr"][style*="gap:80px"] {
    gap: 36px !important;
  }

  /* 18. 4-col stats strips → blijven 4-col maar kleiner op mobile */
  [style*="grid-template-columns:repeat(4,1fr)"] [style*="font-size:52px"] {
    font-size: 26px !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] [style*="padding:0 32px"] {
    padding: 0 8px !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] [style*="padding:0 32px 0 0"] {
    padding: 0 8px 0 0 !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] [style*="padding:0 0 0 32px"] {
    padding: 0 0 0 8px !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"] [style*="font-size:13px"] {
    font-size: 10px !important;
    margin-top: 4px !important;
  }

  /* 19. 3-col inline grids → 1-col on mobile */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* 20. Section-header + knop flex-rijen → stapelen op mobile
     Pattern: display:flex; justify-content:space-between; align-items:flex-end */
  [style*="justify-content:space-between"][style*="align-items:flex-end"][style*="margin-bottom:48px"],
  [style*="justify-content:space-between"][style*="align-items:flex-end"][style*="margin-bottom:56px"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
  }

  /* 21. Campus featured card (1fr auto) → single column */
  [style*="grid-template-columns:1fr auto"],
  [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* Grid children: min-width:auto prevents shrinking below content width → force 0 */
  [style*="grid-template-columns:1fr auto"] > div,
  [style*="grid-template-columns:auto 1fr"] > div {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  /* Reduce the large padding on that card */
  [style*="grid-template-columns:1fr auto"][style*="padding:48px 56px"],
  [style*="padding:48px 56px"][style*="border-radius:var(--radius-lg)"] {
    padding: 28px 24px !important;
  }
  /* Reduce oversized heading in featured card on mobile */
  [style*="grid-template-columns:1fr auto"] h3[style*="font-size:32px"],
  [style*="padding:48px 56px"][style*="border-radius:var(--radius-lg)"] h3[style*="font-size:32px"] {
    font-size: 22px !important;
  }

  /* 22. Campus tab-balk verbergen op mobile (accordion vervangt het) */
  #campus-tab-bar { display: none !important; }

  /* Campus accordion stijlen */
  .campus-panel {
    display: block !important;
    border-top: 1px solid var(--mid-grey);
  }
  .campus-accordion-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    gap: 12px;
  }
  .campus-accordion-btn .chevron { flex-shrink: 0; transition: transform 0.25s; }
  .campus-panel.accordion-open .campus-accordion-btn .chevron { transform: rotate(180deg); }
  .campus-panel-content { display: none; }
  .campus-panel.accordion-open .campus-panel-content { display: block; }
  /* Verwijder right-border tussen de twee helften wanneer gestapeld */
  .campus-panel-content > div:first-child {
    border-right: none !important;
    border-bottom: 1px solid var(--mid-grey);
  }

  /* 23. Tab panel inner grids: padding te groot wanneer gestapeld */
  [style*="padding:48px 48px 48px 56px"] { padding: 24px 20px !important; }
  [style*="padding:48px 56px 48px 48px"] { padding: 24px 20px !important; }
  [style*="padding:48px 56px"] { padding: 28px 20px !important; }

  /* 24. Ontbrekende 2-kolom grids → 1-kolom (2fr 1fr, 3fr 1fr etc.) */
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:3fr 1fr"],
  [style*="grid-template-columns:1fr 3fr"],
  [style*="grid-template-columns:2fr 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 2fr"][style*="gap:64px"],
  [style*="grid-template-columns:2fr 1fr"][style*="gap:80px"],
  [style*="grid-template-columns:2fr 1fr"][style*="gap:64px"] {
    gap: 28px !important;
  }

  /* 25. Sectie-level padding reductie voor grote inline paddings */
  [style*="padding:96px 0"] { padding-top: 56px !important; padding-bottom: 48px !important; }
  [style*="padding:80px 0"] { padding-top: 52px !important; padding-bottom: 40px !important; }
  [style*="padding:64px 0"] { padding-top: 44px !important; padding-bottom: 36px !important; }

  /* 26. Grote kaart-paddings → compact op mobile */
  [style*="padding:48px 36px"] { padding: 24px 20px !important; }
  [style*="padding:40px 48px"] { padding: 24px 20px !important; }
  [style*="padding:32px 40px"] { padding: 20px 20px !important; }
  [style*="padding:36px 40px"] { padding: 20px 20px !important; }

  /* 27. Value-card padding (over-ons.html page-CSS klasse) */
  .value-card { padding: 20px !important; }

  /* 28. Featured product card inner content padding */
  .product-card--featured [style*="padding:32px 40px"] { padding: 20px !important; }
  .product-card--featured .product-card__body { padding: 16px 20px !important; }

  /* 29. Display-headings: inline font-sizes reduceren op mobile (veilig: alleen h1/h2) */
  h1[style*="font-size:60px"], h1[style*="font-size:56px"] {
    font-size: 34px !important; line-height: 1.1 !important;
  }
  h2[style*="font-size:48px"], h2[style*="font-size:44px"], h2[style*="font-size:40px"] {
    font-size: 26px !important; line-height: 1.15 !important;
  }

  /* 31. Newsletterstrip: flex-row met gap:48px → kolom */
  [style*="flex-wrap:wrap"][style*="justify-content:space-between"][style*="gap:48px"] {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* 32. Info-rijen (contact/sidebar) met min-width → laten wrappen */
  [style*="min-width:260px"] { min-width: 0 !important; }
  [style*="min-width:300px"] { min-width: 0 !important; }
  [style*="min-width:320px"] { min-width: 0 !important; }
  [style*="min-width:340px"] { min-width: 0 !important; }
  [style*="min-width:360px"] { min-width: 0 !important; }

  /* 33. Discipline-card padding reduceren op mobile */
  .discipline-card { padding: 28px 20px !important; }

  /* 34. Section__desc max-width opheffen op mobile */
  .section__desc { max-width: 100% !important; }
}

/* ── SECTION HEADER WITH CTA ── */
.section-header-with-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .section-header-with-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
}

/* ── LUCIDE ICONS ── */
.icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 22px; height: 22px; }
.icon-lg  { width: 28px; height: 28px; }
.icon-xl  { width: 40px; height: 40px; }
.icon-2xl { width: 52px; height: 52px; }

/* Icon in coloured box (service cards) */
.icon-box {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.icon-box--blue       { background: rgba(42,82,160,0.12);  color: var(--blue); }
.icon-box--teal       { background: rgba(58,158,143,0.12); color: var(--teal); }
.icon-box--gold       { background: rgba(201,145,10,0.12); color: var(--gold); }
.icon-box--coral      { background: rgba(232,133,106,0.12);color: var(--coral); }
.icon-box--navy       { background: rgba(26,46,90,0.10);   color: var(--navy); }
.icon-box--purple     { background: rgba(139,94,164,0.12); color: var(--purple); }
.icon-box--white      { background: rgba(255,255,255,0.15);color: #fff; }

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS (animations.js)
══════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--anim-delay, 0s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--anim-delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── Button arrow on all button types ─── */
.btn--primary .btn-arrow,
.btn--outline-navy .btn-arrow,
.btn--outline-white .btn-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--primary:hover .btn-arrow,
.btn--outline-navy:hover .btn-arrow,
.btn--outline-white:hover .btn-arrow {
  transform: translateX(5px);
}
.btn--primary:active,
.btn--outline-navy:active,
.btn--outline-white:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

/* ══════════════════════════════════════════════
   HERO ANIMATIONS (Laag 2)
══════════════════════════════════════════════ */

@keyframes heroWordUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* word spans — hidden by default until JS adds animation */
.hw {
  display: inline-block;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hw { opacity: 1; animation: none !important; }
}

/* ── TABS ───────────────────────────────────────────────── */
.tab-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.tab-nav {
  display: flex;
  position: relative;
  border-bottom: 2px solid var(--mid-grey);
}
.tab-nav__btn {
  flex: 1;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  text-align: center;
}
.tab-nav__btn.active { color: var(--navy); font-weight: 700; }
.tab-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: var(--coral);
  transition: left 0.35s cubic-bezier(0.16,1,0.3,1), width 0.35s cubic-bezier(0.16,1,0.3,1);
}
.tab-panel {
  display: none;
  padding: 40px 48px;
}
.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.3s ease both;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .tab-panel.active { animation: none; } }
@media (max-width: 768px) {
  .tab-nav__btn { padding: 16px 12px; font-size: 13px; }
  .tab-panel { padding: 28px 24px; }
}

/* ── ACCORDION ──────────────────────────────────────────── */
.accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.accordion__item {
  border-bottom: 1px solid var(--mid-grey);
}
.accordion__item:last-child { border-bottom: none; }
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}
.accordion__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
}
.accordion__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  line-height: 1;
  font-weight: 300;
}
.accordion__item.open .accordion__icon {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: rotate(45deg);
}
.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.accordion__body-inner {
  padding: 0 32px 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.accordion__item.open .accordion__body { max-height: 500px; }
@media (prefers-reduced-motion: reduce) {
  .accordion__body { transition: none; }
  .accordion__icon { transition: none; }
}
@media (max-width: 768px) {
  .accordion__header { padding: 18px 20px; }
  .accordion__body-inner { padding: 0 20px 22px; }
  .accordion__title { font-size: 15px; }
}

/* ── Hero visual: Matisse Collage ─────────────────────── */
.matisse-svg {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  overflow: visible;
}

/* Per-shape float animations — transform-box keeps origin at shape center */
.matisse-svg .m-shape {
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes mFloat1 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  40%     { transform: translateY(-18px) rotate(4deg); }
  70%     { transform: translateY(-8px) rotate(2deg); }
}
@keyframes mFloat2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(16px) rotate(-3deg); }
}
@keyframes mFloat3 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(5deg); }
}
@keyframes mFloat4 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(10px); }
}
@keyframes mFigure {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-10px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .matisse-svg .m-shape { animation: none !important; }
}

/* ============================================================
   PAGE TRANSITIONS
   View Transitions API (Chrome 126+, Safari 18.2+) +
   JS-fallback voor overige browsers (transitions.js)
   ============================================================ */

/* Cross-document View Transitions */
@view-transition {
  navigation: auto;
}

/* Huidige pagina uit */
::view-transition-old(root) {
  animation: 110ms ease-in both vt-fade-out;
}

/* Nieuwe pagina in — micro-schaal + fade */
::view-transition-new(root) {
  animation: 160ms cubic-bezier(0.16,1,0.3,1) both vt-appear;
}

@keyframes vt-fade-out {
  to { opacity: 0; }
}

@keyframes vt-appear {
  from { opacity: 0; transform: scale(0.985); }
}

/* JS-fallback states (transitions.js zet deze classes op <html>) */
html.page-loading {
  opacity: 0;
  transform: scale(0.985);
}
html.page-loaded {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.16s ease-out, transform 0.16s cubic-bezier(0.16,1,0.3,1);
}
html.page-leaving {
  opacity: 0;
  transition: opacity 0.11s ease-in;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
  html.page-loaded,
  html.page-leaving { transition: none; }
}
