/* ============================================================
   Mijn woord tegen het mijne — demo-site
   Beeldtaal: zwart + signaaloranje (#F2562C), Kanit
   ============================================================ */

:root {
  --bg: #0C0A09;
  --surface: #161210;
  --surface-2: #1E1915;
  --ink: #F4EEE8;
  --muted: #A2968B;
  --accent: #F2562C;
  --accent-dim: #b83c1c;
  --line: #2A231E;
  --good: #6BC49A;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Kanit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 10, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo {
  font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
  color: var(--ink); text-transform: uppercase; white-space: nowrap;
}
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.lang-toggle {
  background: none; border: 1px solid var(--line); color: var(--muted);
  font-family: inherit; font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 100px; cursor: pointer;
  letter-spacing: 0.08em;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--ink); }
.btn-houvast {
  background: var(--accent); color: #fff !important; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
}
.btn-houvast:hover { background: var(--accent-dim); text-decoration: none; }
/* hamburger — standaard verborgen (desktop), verschijnt op mobiel */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-inner { gap: 8px; padding: 12px 18px; position: relative; }
  .nav-logo { font-size: 13px; letter-spacing: 0; line-height: 1.15; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12, 10, 9, 0.98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); padding: 8px 18px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 2px; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-links a:hover { color: var(--accent); }
  .nav-links .lang-toggle { margin: 14px 0 6px; width: 100%; padding: 10px 14px; font-size: 15px; }
  .nav-links a.btn-houvast {
    margin-top: 14px; text-align: center; padding: 14px; border-bottom: none;
    color: #fff; font-weight: 600;
  }
}

/* ---------- hero ---------- */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 90px 0 70px;
  background: url('../img/hero-poster.jpg') center / cover no-repeat #0C0A09;
}
/* De hersenspinsels-animatie draait als bewegende achtergrond; de kraai is de poster/fallback. */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  /* Sier, geen speler: zo kan niemand hem per ongeluk pauzeren. */
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(242, 86, 44, 0.08), transparent 60%),
    linear-gradient(to bottom, rgba(12, 10, 9, 0.18) 0%, rgba(12, 10, 9, 0.45) 55%, rgba(12, 10, 9, 0.95) 100%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.laurel-ico { width: 22px; height: 15px; vertical-align: -2px; margin-right: 10px; color: var(--accent); }
.film-huur { color: var(--muted); font-size: 15px; }
.hero-eyebrow {
  color: var(--accent); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 800; line-height: 0.98; letter-spacing: -0.02em;
  margin: 0 0 26px; text-transform: uppercase; text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 200; color: var(--accent); text-transform: lowercase; }
.hero-sub {
  font-size: clamp(18px, 2.4vw, 23px); font-weight: 300;
  color: var(--muted); max-width: 620px; margin: 0 0 36px; text-wrap: balance;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dim); text-decoration: none; }
.btn-ghost { background: none; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); text-decoration: none; }

.laurels {
  display: flex; gap: 34px; flex-wrap: wrap; margin-top: 60px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.laurel { font-size: 13px; color: var(--muted); line-height: 1.45; }
a.laurel { color: var(--muted); display: block; }
a.laurel:hover { text-decoration: none; }
a.laurel:hover strong { color: var(--accent); }
.laurel strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }
.laurel .fest { color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }

/* ---------- pers ---------- */
.press { border-block: 1px solid var(--line); background: var(--surface); }
.press-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 26px 24px;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.press-quote { text-align: center; }
a.press-quote { color: inherit; display: block; }
a.press-quote:hover { text-decoration: none; }
a.press-quote:hover .src { color: var(--accent); }
.press-quote .stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.press-quote .quote-txt { font-style: italic; font-weight: 300; font-size: 16px; }
.press-quote .src {
  display: block; font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px;
}

/* ---------- secties ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  color: var(--accent); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; margin: 0 0 14px;
}
h2 {
  font-size: clamp(30px, 4.5vw, 46px); font-weight: 700;
  line-height: 1.08; margin: 0 0 22px; letter-spacing: -0.01em; text-wrap: balance;
}
.section-intro { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 0 44px; }
.dc-credit {
  color: var(--muted); font-size: 15px; max-width: 640px; margin: -30px 0 44px;
  border-left: 2px solid var(--accent); padding-left: 14px;
}

.trailer {
  position: relative; aspect-ratio: 16 / 9; margin: 0 0 60px;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--surface); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.film-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .film-grid { grid-template-columns: 1fr; gap: 32px; } }
.film-grid p { margin: 0 0 18px; }
.credits { border-left: 2px solid var(--accent); padding-left: 24px; font-size: 15px; }
.credits dt {
  color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; margin-top: 16px;
}
.credits dt:first-child { margin-top: 0; }
.credits dd { margin: 2px 0 0; font-weight: 400; }

/* ---------- protagonisten ---------- */
.namen {
  display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 8px;
}
.naam {
  font-size: clamp(30px, 5vw, 54px); font-weight: 200; line-height: 1.15;
  color: var(--muted); transition: color 0.25s;
  cursor: default;
}
.naam:hover { color: var(--accent); }
.naam::after { content: '·'; color: var(--line); margin-left: 40px; }
.naam:last-child::after { content: ''; }

/* Portretkaartjes van de zes mensen uit de film */
.portretten { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.portret { margin: 0; position: relative; transition: transform 0.25s ease; }
.portret img { width: 100%; height: auto; display: block; border-radius: 10px; border: 1px solid var(--line); }
.portret figcaption { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
/* Bij aanwijzen vergroot het portret zich boven de rest */
.portret:hover { transform: scale(1.35); z-index: 5; }
.portret:hover img { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65); border-color: var(--accent); }
@media (max-width: 640px) { .portretten { gap: 10px; } .portret:hover { transform: scale(1.15); } }

/* ---------- wereld ---------- */
.world { background: var(--surface); border-block: 1px solid var(--line); }
.world-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .world-grid { grid-template-columns: 1fr; } }
.cn-title {
  color: var(--accent); font-size: 19px; font-weight: 400;
  letter-spacing: 0.4em; margin: -8px 0 26px;
}
.poster-figure { margin: 0; }
.poster-figure img {
  width: 100%; max-width: 380px; display: block; margin: 0 auto;
  border-radius: 10px; border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}
.poster-figure figcaption {
  text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.city {
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 20px; font-size: 15px; font-weight: 400; color: var(--ink);
}
.city strong { color: var(--accent); font-weight: 600; }
.world-note { color: var(--muted); font-size: 15px; margin-top: 26px; max-width: 560px; }

/* ---------- houvast teaser ---------- */
.houvast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .houvast-grid { grid-template-columns: 1fr; gap: 40px; } }
.feature { display: flex; gap: 16px; margin-bottom: 22px; }
.feature-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  margin-top: 9px; flex-shrink: 0;
}
.feature h3 { margin: 0 0 4px; font-size: 17px; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* mini chat preview op landingspagina */
.chat-preview {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.chat-preview-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
.chat-preview-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--good); }
.chat-preview-head span { font-size: 13px; color: var(--muted); }
.bubble {
  max-width: 85%; padding: 12px 16px; border-radius: 14px;
  font-size: 15px; margin-bottom: 12px; line-height: 1.5;
}
.bubble.bot { background: var(--surface-2); border-bottom-left-radius: 4px; }
.bubble.user {
  background: var(--accent); color: #fff; margin-left: auto;
  border-bottom-right-radius: 4px;
}

/* ---------- hulp ---------- */
.hulp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px) { .hulp-cards { grid-template-columns: 1fr; } }
.hulp-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px;
}
.hulp-card.urgent { border-color: var(--accent); }
.hulp-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.hulp-card p { margin: 0 0 10px; color: var(--muted); font-size: 15px; }
.hulp-card .big { font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: 0.02em; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line); padding: 44px 0 60px;
  color: var(--muted); font-size: 14px;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.demo-note { color: var(--accent); font-weight: 500; }

/* ============================================================
   HOUVAST demo-app (houvast.html)
   ============================================================ */

.app-body { min-height: 100vh; display: flex; flex-direction: column; }

.demo-banner {
  background: var(--accent); color: #fff; text-align: center;
  font-size: 13px; font-weight: 500; padding: 7px 16px; letter-spacing: 0.04em;
}
.demo-banner a { color: #fff; text-decoration: underline; }

/* login */
.login-screen {
  flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 24px;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(242, 86, 44, 0.1), transparent 65%);
}
.login-card {
  width: 100%; max-width: 400px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 18px; padding: 40px 36px;
}
.login-card h1 { font-size: 30px; font-weight: 700; margin: 0 0 6px; }
.login-card h1 em { color: var(--accent); font-style: normal; }
.login-card .sub { color: var(--muted); font-size: 15px; margin: 0 0 28px; }
.login-card label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px;
}
.login-card input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); font-family: inherit; font-size: 16px;
  padding: 12px 14px; margin-bottom: 18px;
}
.login-card .btn { width: 100%; }
.login-anon {
  display: block; text-align: center; margin-top: 16px;
  font-size: 14px; color: var(--muted); cursor: pointer;
}
.login-anon:hover { color: var(--accent); }
.login-privacy {
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
}

/* app-layout */
.app-layout { flex: 1; display: grid; grid-template-columns: 300px 1fr; min-height: 0; }
@media (max-width: 860px) { .app-layout { grid-template-columns: 1fr; } .sidebar { display: none; } }

.sidebar {
  border-right: 1px solid var(--line); background: var(--surface);
  padding: 26px 22px; overflow-y: auto;
}
.sidebar h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin: 26px 0 12px; }
.sidebar h2:first-child { margin-top: 0; }
.profiel-kaart {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; margin-bottom: 10px; font-size: 14px;
}
.profiel-kaart strong { display: block; font-weight: 600; font-size: 15px; }
.profiel-kaart .tag {
  display: inline-block; font-size: 11.5px; color: var(--accent);
  border: 1px solid rgba(242, 86, 44, 0.4); border-radius: 100px;
  padding: 1px 10px; margin: 6px 4px 0 0;
}
.profiel-kaart .mini { color: var(--muted); font-size: 13px; margin-top: 4px; }
.dagboek-item { font-size: 13.5px; color: var(--muted); padding: 10px 2px; border-bottom: 1px solid var(--line); }
.dagboek-item strong { color: var(--ink); font-weight: 500; display: block; font-size: 13px; }
.export-btn {
  width: 100%; margin-top: 22px; background: none; border: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 14px; padding: 11px;
  border-radius: 10px; cursor: pointer;
}
.export-btn:hover { border-color: var(--accent); }

/* chat */
.chat-pane { display: flex; flex-direction: column; min-height: 0; height: calc(100vh - 34px); }
.chat-head {
  padding: 18px 28px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.chat-head .status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--good); }
.chat-head strong { font-weight: 600; }
.chat-head span { color: var(--muted); font-size: 13.5px; }
.chat-scroll { flex: 1; overflow-y: auto; padding: 28px; }
.chat-scroll .bubble { animation: rise 0.3s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.typing { display: inline-flex; gap: 5px; padding: 14px 18px; }
.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted);
  animation: blink 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; } 30% { opacity: 1; } }

.crisis-card {
  border: 1px solid var(--accent); background: rgba(242, 86, 44, 0.08);
  border-radius: 14px; padding: 20px; margin-bottom: 12px; max-width: 85%;
}
.crisis-card strong { display: block; font-size: 16px; margin-bottom: 6px; }
.crisis-card p { margin: 0 0 8px; font-size: 14.5px; color: var(--ink); }
.crisis-card .lines { font-size: 20px; font-weight: 800; color: var(--accent); }

.quick-replies { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 28px 14px; }
.quick-reply {
  background: none; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink); font-family: inherit; font-size: 14px;
  padding: 8px 18px; cursor: pointer;
}
.quick-reply:hover { border-color: var(--accent); color: var(--accent); }

.chat-input-row {
  display: flex; gap: 12px; padding: 16px 28px 22px; border-top: 1px solid var(--line);
}
.chat-input-row input {
  flex: 1; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 100px; color: var(--ink); font-family: inherit; font-size: 15.5px;
  padding: 13px 20px;
}
.chat-input-row button {
  background: var(--accent); border: none; color: #fff; font-family: inherit;
  font-size: 15px; font-weight: 600; padding: 0 26px; border-radius: 100px; cursor: pointer;
}
.chat-input-row button:hover { background: var(--accent-dim); }
.chat-disclaimer {
  text-align: center; font-size: 12px; color: var(--muted); padding: 0 28px 14px;
}

/* ============================================================
   Vragen-pagina (vragen.html)
   ============================================================ */

.vragen-hero { padding: 90px 0 40px; }
.vragen-titel {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.02;
  text-transform: uppercase; letter-spacing: -0.02em; margin: 0 0 20px;
}
.groep-keuze { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.groep-knop {
  background: none; border: 1px solid var(--line); color: var(--muted);
  font-family: inherit; font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: 100px; cursor: pointer;
}
.groep-knop:hover { border-color: var(--accent); color: var(--ink); }
.groep-knop.actief { background: var(--accent); border-color: var(--accent); color: #fff; }

.vragen-main { padding-bottom: 80px; }
.vragen-groep { max-width: 780px; }
.vragen-groep details {
  border-bottom: 1px solid var(--line);
}
.vragen-groep summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 20px 44px 20px 0; font-size: 17.5px; font-weight: 500;
}
.vragen-groep summary::-webkit-details-marker { display: none; }
.vragen-groep summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 26px; font-weight: 200; transition: transform 0.2s;
}
.vragen-groep details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.vragen-groep details[open] summary { color: var(--accent); }
.vragen-groep details p {
  margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.7;
  max-width: 680px;
}
.vragen-groep details p em { color: var(--ink); font-style: italic; }

.landen-sectie { margin-top: 90px; padding-top: 60px; border-top: 1px solid var(--line); }
.landen-sectie h2 { margin-bottom: 34px; }
.landen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1000px) { .landen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .landen-grid { grid-template-columns: 1fr; } }
.land-kaart {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px;
}
.land-kaart h3 { margin: 0 0 10px; font-size: 16px; font-weight: 600; }
.land-kaart p { margin: 0 0 8px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.land-kaart .crisis {
  margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line);
  color: var(--accent); font-weight: 500;
}

.vragen-disclaimer {
  margin-top: 60px; padding: 20px 24px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--surface);
}
.vragen-disclaimer p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Taalwissel op de vragenpagina's */
.taal-links { display: inline-flex; gap: 4px; }
.taal-links a {
  border: 1px solid var(--line); border-radius: 100px;
  padding: 4px 12px; font-size: 12.5px !important; color: var(--muted);
}
.taal-links a.actief { border-color: var(--accent); color: var(--accent); }
.taal-links a:hover { border-color: var(--accent); color: var(--ink); text-decoration: none; }

/* Taalkiezer als dropdown (7 talen) */
select.lang-toggle {
  appearance: none; -webkit-appearance: none;
  padding: 5px 26px 5px 14px; text-align: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='6'><path d='M0 0 L4 6 L8 0 Z' fill='%23A2968B'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center;
}
select.lang-toggle option { background: #161210; color: #F4EEE8; }

/* De sticker, er schuin op geplakt */
.chat-preview { position: relative; }
.sticker-slap {
  position: absolute; top: -75px; right: -30px; width: 190px; height: 190px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s ease;
  z-index: 2;
}
.chat-preview:hover .sticker-slap { transform: rotate(-6deg) scale(1.04); }
@media (max-width: 860px) {
  .sticker-slap { width: 130px; height: 130px; top: -50px; right: -8px; }
}

/* ---------- impact ---------- */
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 860px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-video { margin: 0; }
.impact-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
}
.impact-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.impact-video figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); }
.impact-video figcaption strong { color: var(--ink); }
.impact-placeholder {
  border: 1px dashed var(--line); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted); font-size: 15px; padding: 24px; min-height: 200px;
}

/* ============================================================
   HOUVAST TIJDELIJK VERBORGEN — pitch-versie (juli 2026)
   Dit ene blok verbergt alles rond Houvast. Verwijder het blok
   en Houvast is in één klap weer volledig zichtbaar.
   ============================================================ */
#houvast,                    /* de Houvast-sectie op de homepage        */
.btn-houvast,                /* "Praat met Houvast" knop in de navigatie */
.hero-ctas .btn-ghost,       /* "Praat met Houvast" knop in de hero      */
.world-note[data-i18n="world_note"] { /* QR-code/Houvast-zin in Wereldwijd */
  display: none !important;
}

/* ---------- Vertoningen in september ----------
   Tijdelijk blok. Na 27 september 2026 kan dit er in zijn geheel uit:
   de sectie in de zeven html-pagina's, dit stukje css en de nff_-regels
   in js/main.js. */
.nff { border-bottom: 1px solid var(--line); background: var(--surface); }
.nff-inner { max-width: var(--maxw); margin: 0 auto; padding: 44px 24px; }
.nff h2 { font-size: 26px; font-weight: 700; margin: 0 0 26px; line-height: 1.2; }

.nff-tv { max-width: 68ch; margin: 0 0 38px; }
.nff-tv p { font-size: 16px; line-height: 1.6; margin: 0 0 10px; color: var(--ink); }
.nff-tv .btn { margin-top: 16px; }
.nff-kop {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin: 0 0 22px; padding-top: 26px; border-top: 1px solid var(--line);
}
.nff-plekken { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.nff-plek { display: flex; flex-direction: column; align-items: flex-start; }
.nff .fest {
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 11px; font-weight: 600; display: block; margin: 0 0 14px;
}
.nff-data { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 20px; }
.nff-datum { font-size: 15px; line-height: 1.5; margin: 0; }
.nff-datum b { display: block; color: var(--ink); font-weight: 600; }
.nff-datum span { color: var(--muted); }
.nff-plek .klein { display: block; color: var(--muted); font-size: 13px; margin-top: 10px; }

@media (max-width: 760px) {
  .nff-plekken { grid-template-columns: 1fr; gap: 30px; }
  .nff-plek + .nff-plek { padding-top: 30px; border-top: 1px solid var(--line); }
  .nff-data { gap: 20px; flex-direction: column; }
}

/* ---------- wie beantwoordt de vragen ----------
   Boven de perspectiefknoppen: eerst kies je wie er antwoordt, daarna
   voor wie de vraag geldt. Dirk staat op deze pagina zelf, de anderen
   komen uit de kennisbank. */
.wie-keuze { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 22px 0 6px; }
.wie-keuze .wie-label {
  color: var(--muted); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600; margin-right: 4px;
}
.wie-knop {
  display: inline-block; background: none; border: 1px solid var(--line);
  color: var(--ink); font-size: 15px; font-weight: 600;
  padding: 10px 20px; border-radius: 100px; text-decoration: none;
}
.wie-knop:hover { border-color: var(--accent); text-decoration: none; }
.wie-knop.actief { background: var(--accent); border-color: var(--accent); color: #fff; }
.wie-knop.actief small { color: rgba(255,255,255,.75); }
.wie-knop small { display: block; font-weight: 400; font-size: 12.5px; color: var(--muted); }
