/* ============================================================
   KGSO-CEJA × Evermind — gedeelde stylesheet voor subpagina-mockups
   Basis: homepage-concept-evermind-kgso.html (tokens + componenten)
   De homepage zelf houdt zijn eigen inline CSS; dit bestand voedt
   de subpagina's: expert-zoeken, agenda, event-detail, expertprofiel.
   ============================================================ */
@font-face {
  font-family: 'Raveo Display';
  src: url('https://byqsupply-components.netlify.app/Evermind/fonts/Raveo-Display-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --c-yellow:        #e1cd00;
  --c-yellow-hover:  #cfb500;
  --c-yellow-soft:   #ede04b;
  --c-navy:          #221c35;
  --c-cream:         #f4f3f0;
  --c-text:          #333333;
  --c-ink:           #201f1b;
  --c-stone:         #3d3c37;
  --c-sand:          #eae8e0;
  --c-veil:          rgba(244, 243, 240, 0.78);
  --c-veil-dark:     rgba(32, 31, 27, 0.55);
  --c-white:         #fdfdfb;

  --font-serif:   'Merriweather', Georgia, serif;
  --font-sans:    'DM Sans', Helvetica, Arial, sans-serif;
  --font-display: 'Raveo Display', 'DM Sans', Helvetica, Arial, sans-serif;

  --radius-sm:   8px;
  --radius-lg:   16px;
  --radius-btn:  12px;
  --radius-pill: 12px;

  --shadow-rim-light: inset 0 1px 0 0 rgba(32,31,27,0.04), inset 0 -1px 0 0 rgba(32,31,27,0.08);
  --shadow-rim-dark:  inset 0 0 0 1px rgba(244,243,240,0.08);
  --shadow-float: 0 8px 32px rgba(32,31,27,0.10);

  --t-quick: 300ms ease;
  --t-fade:  200ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.5;
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; color: var(--c-ink); }
img { max-width: 100%; }
a { text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-stone);
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: var(--radius-pill);
  background: var(--c-yellow); flex-shrink: 0;
}
.dark .eyebrow { color: rgba(244,243,240,0.7); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: background var(--t-quick), color var(--t-quick), box-shadow var(--t-quick);
}
.btn-primary { background: var(--c-yellow); color: var(--c-ink); box-shadow: var(--shadow-rim-light); }
.btn-primary:hover { background: var(--c-yellow-hover); }
.btn-ghost-dark {
  background: rgba(244,243,240,0.10); color: var(--c-white);
  box-shadow: var(--shadow-rim-dark); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-ghost-dark:hover { background: rgba(244,243,240,0.18); }
.btn-ghost-light { background: transparent; color: var(--c-ink); box-shadow: inset 0 0 0 1px rgba(32,31,27,0.18); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1px rgba(32,31,27,0.4); }

/* ---------- zwevende glas-navigatie ---------- */
.site-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px 12px 24px;
  background: var(--c-veil);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rim-light), var(--shadow-float);
  z-index: 1000;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo .mark {
  width: 36px; height: 36px; border-radius: var(--radius-pill);
  background: var(--c-yellow); color: var(--c-ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; letter-spacing: -0.5px;
}
.nav-logo .word { font-family: var(--font-display); font-weight: 500; font-size: 17px; color: var(--c-ink); letter-spacing: -0.3px; }
.nav-logo .word span { color: var(--c-stone); font-weight: 400; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500; color: var(--c-ink); text-decoration: none;
  transition: background var(--t-quick);
}
.nav-links a:hover { background: rgba(32,31,27,0.06); }
.nav-links a.active { background: rgba(32,31,27,0.08); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex; gap: 2px; padding: 3px; border-radius: var(--radius-pill);
  background: rgba(32,31,27,0.06); font-size: 12px; font-weight: 700;
}
.lang-switch span { padding: 5px 10px; border-radius: var(--radius-pill); color: var(--c-stone); cursor: pointer; }
.lang-switch .active { background: var(--c-ink); color: var(--c-cream); }
.nav-cta { padding: 11px 22px; font-size: 14px; }
/* ingelogde expert in de glas-nav */
.nav-user { display: flex; align-items: center; gap: 10px; padding: 4px 14px 4px 4px; border-radius: var(--radius-pill); background: rgba(32,31,27,0.06); }
.nav-user img { width: 32px; height: 32px; border-radius: var(--radius-pill); object-fit: cover; }
.nav-user span { font-family: var(--font-display); font-size: 13px; font-weight: 500; color: var(--c-ink); }

/* ---------- pagina-kop (subpagina's, cream met dots) ---------- */
.page-head { position: relative; padding: 168px 0 56px; overflow: clip; }
.page-head::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 420px;
  background-image: radial-gradient(rgba(32,31,27,0.14) 1.2px, transparent 1.7px);
  background-size: 26px 26px; background-position: 50% 0;
  -webkit-mask-image: radial-gradient(closest-side at 50% 15%, #000 10%, transparent 95%);
  mask-image: radial-gradient(closest-side at 50% 15%, #000 10%, transparent 95%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -1.8px; margin: 18px 0 16px; max-width: 20ch; }
.page-head h1 em { font-style: italic; }
.page-head .lead { max-width: 560px; font-size: 17px; line-height: 1.55; color: var(--c-stone); }
.crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-stone); margin-bottom: 6px;
}
.crumb a { color: var(--c-stone); }
.crumb a:hover { color: var(--c-ink); }

section.block { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -1px; margin-top: 18px; }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--c-stone); }
.dark { background: var(--c-ink); color: var(--c-cream); }
.dark h2, .dark h3 { color: var(--c-white); }

/* ---------- agenda: filters + eventkaarten (homepage-patroon) ---------- */
.ev-filters {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(32,31,27,0.12);
  border-bottom: 1px solid rgba(32,31,27,0.12);
  padding: 16px 0; margin-bottom: 48px;
}
.ev-filters .ev-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--c-ink);
}
.ev-filter-list { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ev-filter-list .ev-label { color: var(--c-stone); }
.ev-filter-list a {
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--c-ink); text-decoration: none;
  transition: color var(--t-quick);
}
.ev-filter-list a:hover, .ev-filter-list a.muted { color: var(--c-stone); }
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; row-gap: 48px; }
.ev-card { display: flex; flex-direction: column; gap: 24px; text-decoration: none; color: var(--c-text); }
.ev-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 380px; background: var(--c-sand);
}
.ev-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.ev-card:hover .ev-image img { transform: scale(1.04); }
.ev-date-chip {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--c-yellow-soft); border-radius: var(--radius-sm);
  text-align: center; padding: 10px 14px;
}
.ev-date-chip b { display: block; font-family: var(--font-serif); font-size: 24px; line-height: 1.1; color: var(--c-ink); }
.ev-date-chip span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-stone); }
.ev-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  background: rgba(32,31,27,0.25);
  opacity: 0; transition: opacity var(--t-quick);
}
.ev-card:hover .ev-overlay { opacity: 1; }
.ev-overlay .btn { background: var(--c-ink); color: var(--c-cream); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.ev-content { display: flex; flex-direction: column; gap: 14px; }
.ev-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ev-tag {
  padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--c-sand); box-shadow: var(--shadow-rim-light);
  font-family: var(--font-display); font-size: 10px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-ink);
}
.ev-tag.accent { background: var(--c-yellow-soft); }
.ev-meta .ev-info {
  font-family: var(--font-display); font-size: 10px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-stone);
}
.ev-card h3 { font-size: 22px; line-height: 1.3; letter-spacing: -0.4px; max-width: 24em; }

/* ---------- expert zoeken: finder-balk + resultaatkaarten ---------- */
.finder-bar {
  background: var(--c-sand); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-rim-light);
  display: grid; grid-template-columns: 1.4fr 1.2fr 1fr 1fr auto; gap: 24px; align-items: end;
  margin-bottom: 56px;
}
.finder-bar label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-stone);
  margin-bottom: 8px;
}
.finder-bar input, .finder-bar select {
  width: 100%; border: none; outline: none;
  background: var(--c-white); border-radius: var(--radius-sm);
  padding: 14px 16px; font-family: var(--font-sans); font-size: 15px; color: var(--c-ink);
  box-shadow: var(--shadow-rim-light);
}
.finder-bar .btn { justify-content: center; padding: 15px 28px; }
.results-bar { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.results-bar b { font-family: var(--font-serif); font-weight: 400; font-size: 22px; letter-spacing: -0.4px; color: var(--c-ink); }
.results-bar span { font-family: var(--font-display); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-stone); }

/* expertkaart in resultaten — compacte variant van de homepage-slider */
.reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; row-gap: 16px; }
.reg-card {
  position: relative; height: 480px;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--c-ink); color: var(--c-cream);
  display: block; text-decoration: none;
}
.reg-card .exp-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reg-card .exp-grad-top { position: absolute; inset: 0 0 auto; height: 20%; background: linear-gradient(180deg, rgba(32,31,27,0.64), transparent); }
.reg-card .exp-grad-bottom { position: absolute; inset: auto 0 0; height: 55%; background: linear-gradient(180deg, transparent, rgba(32,31,27,0.82)); }
.reg-card .exp-content {
  position: relative; z-index: 1; height: 100%; padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
}
.exp-chip {
  display: inline-flex; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(244,243,240,0.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-rim-dark);
  font-family: var(--font-display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--c-cream);
}
.exp-bottom { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.reg-card .eyebrow { color: rgba(244,243,240,0.72); }
.exp-name { font-family: var(--font-serif); font-size: 26px; letter-spacing: -0.5px; color: var(--c-white); }
.exp-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; width: 100%; }
.exp-meta .who { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.exp-meta .who .muted { color: rgba(244,243,240,0.64); }
.exp-link { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 14px; color: var(--c-cream); }
.exp-link .circ {
  width: 32px; height: 32px; border-radius: var(--radius-pill);
  background: var(--c-yellow); color: var(--c-ink);
  display: grid; place-items: center; font-size: 15px;
}

/* ---------- event-detail ---------- */
.event-hero-image { border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-rim-light); }
.event-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.event-main h2 { font-size: 28px; letter-spacing: -0.6px; margin: 48px 0 16px; }
.event-main h2:first-child { margin-top: 0; }
.event-main p { color: var(--c-stone); margin-bottom: 16px; line-height: 1.65; }
.program { display: flex; flex-direction: column; }
.program-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 24px;
  padding: 18px 4px; border-bottom: 1px solid rgba(32,31,27,0.10);
}
.program-item .time { font-family: var(--font-display); font-weight: 500; color: var(--c-ink); font-size: 14px; letter-spacing: 0.5px; }
.program-item b { display: block; font-size: 15.5px; color: var(--c-ink); }
.program-item span { font-size: 14px; color: var(--c-stone); }
.speakers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.speaker {
  display: flex; gap: 14px; align-items: center;
  background: var(--c-sand); border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-rim-light);
}
.speaker img { width: 52px; height: 52px; border-radius: var(--radius-pill); object-fit: cover; }
.speaker b { display: block; font-size: 15px; color: var(--c-ink); }
.speaker span { font-size: 13px; color: var(--c-stone); }

/* sand aanmeldpaneel (sticky) */
.signup-panel {
  position: sticky; top: 104px;
  background: var(--c-sand); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-rim-light);
}
.signup-panel h3 { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 4px; }
.signup-panel .sub { font-size: 14px; color: var(--c-stone); }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(32,31,27,0.12); font-size: 15px;
}
.price-row:first-of-type { margin-top: 20px; }
.price-row b { font-family: var(--font-serif); font-weight: 400; font-size: 22px; color: var(--c-ink); }
.price-row .ev-tag { margin-left: 10px; }
.signup-panel label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-stone);
  margin: 18px 0 8px;
}
.signup-panel input {
  width: 100%; border: none; outline: none;
  background: var(--c-white); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-sans); font-size: 15px; color: var(--c-ink);
  box-shadow: var(--shadow-rim-light);
}
.signup-panel .btn { width: 100%; justify-content: center; margin-top: 24px; }
.signup-note { font-size: 13px; color: var(--c-stone); margin-top: 14px; line-height: 1.55; }
.signup-note a { color: var(--c-ink); font-weight: 700; border-bottom: 2px solid var(--c-yellow); }

/* ingelogde expert: accountkaart + vooringevulde gegevens */
.account-box {
  display: flex; gap: 14px; align-items: center;
  background: var(--c-white); border-radius: var(--radius-sm);
  padding: 16px; box-shadow: var(--shadow-rim-light); margin-top: 22px;
}
.account-box img { width: 48px; height: 48px; border-radius: var(--radius-pill); object-fit: cover; }
.account-box b { display: block; font-size: 15px; color: var(--c-ink); }
.account-box span { font-size: 13px; color: var(--c-stone); }
.prefill { margin-top: 6px; }
.prefill dt {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--c-stone); margin-top: 16px;
}
.prefill dd { font-size: 15px; color: var(--c-ink); margin-top: 3px; }

/* demo-switch (alleen mockup): bezoeker <-> ingelogd expert */
.view-switch {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2000;
  display: flex; align-items: center; gap: 4px; padding: 5px;
  background: var(--c-ink); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float), var(--shadow-rim-dark);
}
.view-switch .label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(244,243,240,0.5); padding: 0 8px 0 14px;
}
.view-switch button {
  border: none; cursor: pointer; background: transparent;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: rgba(244,243,240,0.7); padding: 9px 18px; border-radius: var(--radius-pill);
  transition: background var(--t-quick), color var(--t-quick);
}
.view-switch button.active { background: var(--c-yellow); color: var(--c-ink); }
/* verberg per state — géén display:revert (dat valt terug op de
   browser-default `block` en breekt flex-containers zoals .nav-right) */
body:not(.view-expert) .only-expert { display: none !important; }
body.view-expert .only-guest { display: none !important; }

/* ---------- expertprofiel ---------- */
.profile-head { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.profile-photo {
  width: 200px; height: 220px; border-radius: var(--radius-sm); object-fit: cover;
  box-shadow: var(--shadow-float);
}
.member-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-sm);
  background: var(--c-yellow-soft); box-shadow: var(--shadow-rim-light);
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-ink);
  margin-bottom: 16px;
}
.member-chip::before { content: '✓'; font-size: 12px; }
.profile-head h1 { font-size: clamp(34px, 3.6vw, 50px); letter-spacing: -1.5px; margin-bottom: 8px; }
.profile-function { font-size: 17px; color: var(--c-stone); margin-bottom: 20px; }
.profile-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.profile-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.profile-main h2 { font-size: 26px; letter-spacing: -0.5px; margin: 48px 0 18px; }
.profile-main h2:first-child { margin-top: 0; }
.profile-main > p { color: var(--c-stone); line-height: 1.65; }
.spec-group { margin-bottom: 22px; }
.spec-group h4 {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-stone);
  margin-bottom: 10px;
}
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }

.lang-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lang-table th {
  text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--c-stone); padding: 10px 4px; border-bottom: 1px solid rgba(32,31,27,0.2);
}
.lang-table td { padding: 13px 4px; border-bottom: 1px solid rgba(32,31,27,0.08); color: var(--c-ink); }
.lang-table td:first-child { font-weight: 700; }

.cv-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 15px 4px; border-bottom: 1px solid rgba(32,31,27,0.08);
}
.cv-item .year { font-family: var(--font-display); font-weight: 500; color: var(--c-yellow-hover); font-size: 14px; }
.cv-item b { display: block; color: var(--c-ink); font-size: 15.5px; }
.cv-item span { font-size: 14px; color: var(--c-stone); }

.profile-aside { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 16px; }
.aside-panel {
  background: var(--c-sand); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-rim-light);
}
.aside-panel h3 { font-size: 20px; letter-spacing: -0.4px; margin-bottom: 8px; }
.aside-panel .btn { width: 100%; justify-content: center; margin-top: 24px; }
.aside-panel a.linklike { color: var(--c-ink); font-weight: 700; border-bottom: 2px solid var(--c-yellow); }

/* ---------- CTA: full-bleed fotografie met donkere veil ---------- */
.cta-photo {
  position: relative; overflow: hidden;
  padding: 104px 0 136px;
  text-align: center; color: var(--c-cream);
}
.cta-photo .bg { position: absolute; inset: 0; z-index: 0; }
.cta-photo .bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-photo .bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(32,31,27,0.62);
}
.cta-photo .bg::after {
  content: ''; position: absolute; inset: auto 0 0; height: 140px; z-index: 2;
  background: linear-gradient(180deg, rgba(244,243,240,0), var(--c-cream));
}
.cta-photo .container { position: relative; z-index: 3; }
.cta-photo .eyebrow { justify-content: center; color: rgba(244,243,240,0.75); }
.cta-photo h2 { color: var(--c-white); font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -1px; margin: 18px 0 16px; }
.cta-photo h2 em { font-style: italic; color: var(--c-yellow); }
.cta-photo p { color: rgba(244,243,240,0.82); max-width: 560px; margin: 0 auto 36px; font-size: 17px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer: genest sand-paneel ---------- */
footer { padding: 24px 24px 24px; }
.footer-panel {
  max-width: 1400px; margin: 0 auto;
  background: var(--c-sand); border-radius: var(--radius-lg);
  padding: 64px 64px 32px; box-shadow: var(--shadow-rim-light);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--c-stone); max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-stone);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 15px; color: var(--c-ink); text-decoration: none; transition: color var(--t-fade); }
.footer-col a:hover { color: var(--c-yellow-hover); }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(32,31,27,0.10);
  font-size: 13px; color: var(--c-stone); flex-wrap: wrap; gap: 12px;
}
.footer-legal .links { display: flex; gap: 24px; }
.footer-legal a { color: var(--c-stone); text-decoration: none; }
.footer-legal a:hover { color: var(--c-ink); }

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .ev-grid, .reg-grid { grid-template-columns: 1fr 1fr; }
  .finder-bar { grid-template-columns: 1fr 1fr; }
  .event-cols, .profile-cols { grid-template-columns: 1fr; gap: 48px; }
  .signup-panel, .profile-aside { position: static; }
  .profile-head { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-photo { padding: 72px 0 104px; }
  .footer-panel { padding: 48px 32px 24px; }
}
@media (max-width: 600px) {
  .ev-grid, .reg-grid, .finder-bar, .footer-grid, .speakers { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .page-head { padding-top: 140px; }
  .ev-image { height: 320px; }
  .ev-filters { flex-direction: column; align-items: flex-start; gap: 16px; }
  section.block { padding: 64px 0; }
}
