/* ==========================================================================
   Apex Smart Real Estate × AMRA Phase Two · eventfunnel — v2
   Filmisch ritme: donkere basis, grote Houstiq-koppen, afwisselende beeldformaten,
   royale witruimte, goud/zand-accenten uit de AMRA-beelden.
   ========================================================================== */

@font-face {
  font-family: "Houstiq";
  src: url("../assets/fonts/Houstiq.woff2") format("woff2"), url("../assets/fonts/Houstiq.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "SF Pro";
  src: url("../assets/fonts/SF-Pro.woff2") format("woff2");
  font-weight: 300 600; font-style: normal; font-display: swap;
}

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --night: #0f1613;            /* diepste vlak */
  --forest-deep: #151f19;      /* paginabasis */
  --forest: #1d2a23;           /* verhoogd vlak */
  --forest-light: #2a3a31;
  --gold: #e9d6b4;
  --gold-light: #f4e8d2;
  --gold-dark: #cdb48c;
  --sand: #d8c3a0;             /* strand / gevels */
  --stone: #cfc4b2;            /* interieurs */
  --burgundy: #7b2e18;

  --ink: var(--gold);
  --ink-70: rgba(233, 214, 180, .72);
  --ink-55: rgba(233, 214, 180, .55);
  --ink-40: rgba(233, 214, 180, .40);
  --line: rgba(233, 214, 180, .14);
  --line-strong: rgba(233, 214, 180, .30);

  --serif: "Houstiq", "Cormorant Garamond", Georgia, serif;
  --sans: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --nav-h: 84px;
  --gutter: clamp(20px, 5vw, 80px);
  --max: 1320px;
  --radius: 6px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --section: clamp(96px, 14vh, 176px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--forest-deep);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.dot { color: var(--ink-40); }

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

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 14px;
  margin: 0 0 22px;
  font-size: 12px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow__line { display: inline-block; width: 40px; height: 1px; background: var(--gold-dark); opacity: .8; }
.eyebrow--center { justify-content: center; }
.eyebrow--hero { margin-bottom: 28px; }

.h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1.04;
  letter-spacing: .004em;
  text-wrap: balance;
  color: var(--gold-light);
}
.h2--xl { max-width: 20ch; font-size: clamp(40px, 5.6vw, 88px); }
.h2--sm { font-size: clamp(32px, 3.6vw, 52px); }
.section-head { margin-bottom: clamp(48px, 7vh, 88px); }
.section-head--center { text-align: center; }
.section-head--center .h2 { margin-inline: auto; }
.lead {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-70);
}
.lead--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Knoppen en links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 34px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: .02em; white-space: nowrap;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.btn--primary { background: var(--gold); color: var(--night); box-shadow: 0 8px 40px -10px rgba(233, 214, 180, .35); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 44px -10px rgba(233, 214, 180, .45); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); background: rgba(233, 214, 180, .06); transform: translateY(-2px); }
.btn--sm { min-height: 46px; padding: 0 24px; font-size: 14px; }
.btn--lg { min-height: 62px; padding: 0 42px; font-size: 16px; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0;
  border: 0; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  color: var(--gold);
  transition: color .25s var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold-light); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--down:hover svg { transform: translateY(4px); }
.link-ext { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; letter-spacing: .06em; color: var(--ink-55); transition: color .25s var(--ease); }
.link-ext svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.link-ext:hover { color: var(--gold); }

/* Bewerkbare placeholder – duidelijk herkenbaar, nooit verzonnen inhoud */
.ph {
  display: inline-block; padding: 2px 9px;
  border: 1px dashed rgba(233, 214, 180, .38); border-radius: 4px;
  font-size: 13px; color: var(--ink-55);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(180deg, rgba(15, 22, 19, .6) 0%, rgba(15, 22, 19, 0) 100%);
  transition: background-color .4s var(--ease);
}
.nav::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--line); opacity: 0; transition: opacity .4s var(--ease); }
.nav.is-scrolled { background: rgba(15, 22, 19, .84); -webkit-backdrop-filter: blur(18px) saturate(120%); backdrop-filter: blur(18px) saturate(120%); }
.nav.is-scrolled::after { opacity: 1; }
.nav__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 48px);
  max-width: var(--max); height: var(--nav-h); margin: 0 auto; padding: 0 var(--gutter);
}
.nav__logo { display: flex; align-items: center; gap: 18px; margin-right: auto; color: var(--gold); }
.logo-mark { display: block; background-color: currentColor; -webkit-mask: var(--mark) center / contain no-repeat; mask: var(--mark) center / contain no-repeat; }
.logo-mark--apex { --mark: url("../assets/apex-wordmark.png"); width: 92px; height: 24px; }
.logo-mark--amra { --mark: url("../assets/amra-wordmark.svg"); width: 82px; height: 24px; }
.logo-mark--apex-full { --mark: url("../assets/apex-logo.png"); width: 150px; height: 50px; }
.nav__logo-sep { display: block; width: 1px; height: 22px; background: var(--line-strong); transform: skewX(-18deg); }
.nav__links { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 40px); }
.nav__links a { position: relative; padding: 8px 0; font-size: 14px; letter-spacing: .02em; color: var(--ink-70); transition: color .25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__burger { display: none; position: relative; width: 44px; height: 44px; margin-right: -10px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--gold); transition: transform .35s var(--ease), top .35s var(--ease); }
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 26px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 21.5px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 21.5px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 28px;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 24px) var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 22, 19, .97);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  opacity: 0; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.menu[hidden] { display: none; }
.menu.is-open { opacity: 1; transform: none; }
.menu__links { display: flex; flex-direction: column; margin-bottom: auto; }
.menu__links a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(30px, 8vw, 40px); line-height: 1.1; color: var(--gold-light); }
.menu__cta { width: 100%; }
.menu__foot { margin: 0; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); }

/* --------------------------------------------------------------------------
   Hero – schermvullende B-roll, gecentreerde zware kop (compositie naar GM Studios)
   -------------------------------------------------------------------------- */
:root { --sage: #9fcbb0; --white: #f7f4ee; --display: "Archivo", "Helvetica Neue", Arial, sans-serif; --script: "Cormorant Garamond", Georgia, serif; }
.hero {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  min-height: 100vh; min-height: 100svh;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  overflow: hidden;
  background: var(--night);
  text-align: center;
  --hp: 0;                                   /* scrollvoortgang 0…1, gezet door main.js */
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__poster, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  transform: scale(calc(1.04 + var(--hp) * 0.05));
  will-change: transform;
}
.hero__video { opacity: 0; transition: opacity 1.4s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(15, 22, 19, 0) 35%, rgba(15, 22, 19, .55) 100%),   /* vignet */
    linear-gradient(180deg, rgba(15, 22, 19, .6) 0%, rgba(15, 22, 19, .14) 30%, rgba(15, 22, 19, .26) 62%, rgba(15, 22, 19, .94) 100%),
    rgba(29, 42, 35, .30);                                                                            /* groene brandtint */
}
.hero__grain {
  position: absolute; inset: -20%;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); } 60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); } }
.hero__inner {
  position: relative;
  width: 100%; max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--gutter) clamp(120px, 18vh, 170px);
  transform: translateY(calc(var(--hp) * 60px));
  opacity: calc(1 - var(--hp) * 0.95);
  will-change: transform, opacity;
}
.hero__eyebrow {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 6px 14px;
  margin: 0 0 clamp(14px, 2.4vh, 24px);
  font-family: var(--script); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 1.7vw, 26px); letter-spacing: .01em;
  color: var(--gold-light);
  opacity: 0; animation: rise 1s var(--ease) .2s forwards;
}
.hero__eyebrow-sep { color: var(--sage); }
.hero__orn { position: relative; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--sage)); align-self: center; }
.hero__orn:last-child { background: linear-gradient(90deg, var(--sage), transparent); }
.hero__orn::after { content: ""; position: absolute; top: 50%; right: -3px; width: 5px; height: 5px; transform: translateY(-50%) rotate(45deg); background: var(--sage); }
.hero__orn:last-child::after { right: auto; left: -3px; }
.hero__title {
  margin: 0 auto;
  font-family: var(--display); font-weight: 900; font-stretch: 125%;
  font-size: clamp(44px, 6vw, 90px);
  line-height: .92; letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 0 rgba(15, 22, 19, .25), 0 18px 60px rgba(15, 22, 19, .55);
  transform: scale(calc(1 - var(--hp) * 0.06));
  transform-origin: center bottom;
  hyphens: manual;
}
.hero__line { display: block; overflow: hidden; padding: .04em 0; margin: -.04em 0; }
.hero__title .w { display: inline-block; transform: translateY(112%); filter: blur(6px); animation: word-up 1.15s var(--ease) forwards; }
.hero__line:nth-child(1) .w:nth-child(1) { animation-delay: .35s; }
.hero__line:nth-child(1) .w:nth-child(2) { animation-delay: .43s; }
.hero__line:nth-child(2) .w { animation-delay: .55s; }
.hero__line:nth-child(3) .w:nth-child(1) { animation-delay: .7s; }
.hero__line:nth-child(3) .w:nth-child(2) { animation-delay: .76s; }
.hero__line:nth-child(3) .w:nth-child(3) { animation-delay: .84s; }
.w--accent { color: var(--sage); text-shadow: 0 2px 0 rgba(15, 22, 19, .25), 0 0 46px rgba(159, 203, 176, .35); }
.hero__sub {
  max-width: 56ch; margin: clamp(18px, 3vh, 28px) auto 0;
  font-size: clamp(15px, 1.15vw, 17px); font-weight: 300; line-height: 1.7;
  color: rgba(247, 244, 238, .82);
  opacity: 0; animation: rise 1s var(--ease) 1.05s forwards;
}

/* Blokknoppen in de hoeken */
.hero__corners {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 var(--gutter) calc(20px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: calc(1 - var(--hp) * 1.4);
}
.corner {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 0;
  border-radius: 6px; overflow: hidden;
  background: rgba(15, 22, 19, .72);
  border: 1px solid rgba(247, 244, 238, .14);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(247, 244, 238, .08);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
  opacity: 0; animation: rise 1s var(--ease) 1.25s forwards;
}
.corner__icon {
  display: grid; place-items: center; width: 64px; height: 64px;
  background: rgba(247, 244, 238, .08);
  transition: background-color .35s var(--ease);
}
.corner__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.corner__label { padding: 0 34px 0 30px; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.corner:hover { transform: translateY(-3px); border-color: rgba(247, 244, 238, .3); }
.corner:hover .corner__icon svg { transform: translate(2px, -2px); }
.corner--primary { background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%); border-color: var(--gold-light); color: var(--night); box-shadow: 0 18px 50px -18px rgba(233, 214, 180, .55), inset 0 1px 0 rgba(255, 255, 255, .5); }
.corner--primary .corner__icon { background: rgba(15, 22, 19, .1); }
.corner--primary:hover { background: var(--gold-light); }
.hero__hint {
  pointer-events: auto;
  display: grid; justify-items: center; gap: 10px;
  padding-bottom: 6px;
  color: rgba(247, 244, 238, .55);
  opacity: 0; animation: rise 1s var(--ease) 1.5s forwards;
  transition: color .3s var(--ease);
}
.hero__hint:hover { color: var(--gold-light); }
.hero__hint-line { display: block; width: 1px; height: 44px; background: linear-gradient(180deg, transparent 0%, var(--sage) 100%); animation: scroll-hint 2.6s ease-in-out infinite; }
.hero__hint-text { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
@keyframes word-up { 60% { filter: blur(0); } to { transform: translateY(0); filter: blur(0); } }

/* --------------------------------------------------------------------------
   Partners – rustige logocarrousel als overgang van hero naar event
   -------------------------------------------------------------------------- */
.partners {
  position: relative;
  padding: clamp(40px, 6vh, 64px) 0 clamp(44px, 7vh, 72px);
  background: linear-gradient(180deg, var(--night) 0%, var(--forest-deep) 100%);
  border-bottom: 1px solid var(--line);
}
.partners__label {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0 0 clamp(26px, 4vh, 40px);
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-55);
}
.partners__line { flex: 0 0 clamp(32px, 6vw, 88px); height: 1px; background: var(--line-strong); }
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee__track {
  display: flex; align-items: center; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; justify-content: center; padding: 0 clamp(36px, 5vw, 84px); }
/* Logo's als mask in één kleur: gelijk optisch gewicht, altijd scherp */
.logo-img { display: block; background-color: var(--gold); -webkit-mask: var(--mark) center / contain no-repeat; mask: var(--mark) center / contain no-repeat; opacity: .92; transition: opacity .3s var(--ease), background-color .3s var(--ease); }
.logo-img--apex { --mark: url("../assets/logos/apex-smart-real-estate.png"); width: 150px; height: 50px; }
.logo-img--citi { --mark: url("../assets/logos/citi-developers.svg"); width: 178px; height: 40px; }
.logo-img--cq { --mark: url("../assets/logos/compound-quadrant.svg"); width: 182px; height: 46px; }
.marquee__item:hover .logo-img { opacity: 1; background-color: var(--gold-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% / 3)); } }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; gap: 24px 0; }
  .marquee__item[aria-hidden="true"] { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}
@media (max-width: 860px) {
  .partners { padding: 36px 0 40px; }
  .marquee__item { padding: 0 26px; }
  .logo-img--apex { width: 114px; height: 38px; }
  .logo-img--citi { width: 134px; height: 30px; }
  .logo-img--cq { width: 138px; height: 35px; }
  .marquee__track { animation-duration: 26s; }
}

/* --------------------------------------------------------------------------
   Het programma – tekst + accordion links, browservenster met video rechts
   -------------------------------------------------------------------------- */
.programma { padding: var(--section) 0; background: var(--forest-deep); border-bottom: 1px solid var(--line); }
.programma__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px clamp(40px, 6vw, 96px); align-items: start; }
.programma__title { margin: 0 0 18px; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(34px, 3.4vw, 52px); line-height: .96; letter-spacing: -.01em; text-transform: uppercase; color: var(--white); }
.programma__text .lead { font-size: 15px; }
.acc { margin: 32px 0 36px; border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; padding: 20px 2px; list-style: none; cursor: pointer; }
.acc__q::-webkit-details-marker { display: none; }
.acc__title { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(16px, 1.4vw, 21px); letter-spacing: .01em; text-transform: uppercase; color: var(--white); transition: color .25s var(--ease); }
.acc__item[open] .acc__title, .acc__q:hover .acc__title { color: var(--gold-light); }
.acc__meta { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }
.acc__icon { position: relative; width: 12px; height: 12px; }
.acc__icon::before { content: ""; position: absolute; left: 1px; top: 2px; width: 7px; height: 7px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform .35s var(--ease); }
.acc__item[open] .acc__icon::before { transform: rotate(225deg); top: 5px; }
.acc__a { padding: 0 2px 22px; }
.acc__a p { max-width: 48ch; margin: 0 0 12px; font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-70); animation: faq-in .4s var(--ease) both; }
.acc__steps { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.acc__steps li { padding: 5px 11px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.acc__note { display: flex !important; align-items: center; gap: 10px; width: fit-content; max-width: 100%; padding: 6px 14px 6px 6px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--gold) !important; }
.acc__note img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.acc__note strong { font-weight: 500; color: var(--gold-light); }
.corner--static { position: static; opacity: 1; animation: none; }
.corner--static .corner__label { white-space: normal; line-height: 1.25; padding: 12px 22px 12px 18px; }
.programma__hint { max-width: 48ch; margin: 16px 0 0; font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--ink-55); }

.browser { position: sticky; top: calc(var(--nav-h) + 24px); border-radius: 12px; overflow: hidden; border: 1px solid rgba(247, 244, 238, .12); background: #0c110e; box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .9); }
.browser__bar { display: flex; gap: 8px; padding: 12px 14px; background: #1a211c; border-bottom: 1px solid rgba(247, 244, 238, .08); }
.browser__bar span { width: 12px; height: 12px; border-radius: 50%; background: #3b4a41; }
.browser__bar span:nth-child(1) { background: #ff5f57; } .browser__bar span:nth-child(2) { background: #febc2e; } .browser__bar span:nth-child(3) { background: #28c840; }
.browser__screen { position: relative; aspect-ratio: 16 / 9; background: var(--forest); }
.browser__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s var(--ease); }
.browser__video.is-on { opacity: 1; }
.browser__caption { position: absolute; left: 16px; right: 16px; bottom: 12px; margin: 0; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(247, 244, 238, .55); text-shadow: 0 1px 8px rgba(0, 0, 0, .6); }

@media (max-width: 1024px) {
  .programma__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .browser { position: static; order: -1; }
}
@media (max-width: 860px) {
  .programma { padding: 72px 0; }
  .programma__title { font-size: clamp(30px, 9vw, 40px); }
  .acc { margin: 24px 0 26px; }
  .acc__q { grid-template-columns: 1fr auto; padding: 16px 0; }
  .acc__meta { grid-column: 1; grid-row: 2; margin-top: -8px; padding-bottom: 8px; }
  .acc__icon { grid-row: 1 / span 2; }
  .corner--static { width: 100%; }
  .corner--static .corner__label { padding: 0 14px; font-size: 12px; white-space: normal; }
}
/* B-roll-stroken in het programma: wat je kunt verwachten */
.agenda__card--reel { display: grid; }
.reel { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; border-top: 1px solid var(--line); background: var(--line); }
.reel--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reel__item { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--forest); }
.reel__video { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.92); transition: transform 1.2s var(--ease); }
.reel__item:hover .reel__video { transform: scale(1.04); }
.reel__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 50%, rgba(15, 22, 19, .7) 100%); pointer-events: none; }
.reel__item figcaption { position: absolute; z-index: 2; left: 14px; right: 12px; bottom: 12px; display: flex; align-items: baseline; gap: 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.reel__step { font-family: var(--serif); font-size: 13px; letter-spacing: .08em; color: var(--sage); }
.reel__step:empty { display: none; }
@media (max-width: 1024px) {
  .reel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .reel { display: flex; gap: 2px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .reel::-webkit-scrollbar { display: none; }
  .reel__item { flex: 0 0 78%; scroll-snap-align: start; }
  .reel--two .reel__item { flex: 0 0 82%; }
  .reel__item figcaption { font-size: 10px; }
}

/* --------------------------------------------------------------------------
   Sectie: Het event  (kop + intro in twee kolommen, mozaïek, punten)
   -------------------------------------------------------------------------- */
.event { padding: var(--section) 0; background: var(--forest-deep); }
.event__head {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(40px, 6vw, 120px); row-gap: 32px; align-items: end;
  margin-bottom: clamp(56px, 8vh, 96px);
}
.event__intro { display: grid; gap: 22px; padding-bottom: 6px; }

.mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .8fr) minmax(0, .65fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  height: clamp(360px, 58vh, 640px);
  padding: 0 var(--gutter);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
}
.mosaic__item { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--forest); }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.mosaic__item--wide img { transform: translateY(var(--py, 0)) scale(1.08); will-change: transform; }
.mosaic__item--tall { align-self: end; height: 82%; }
.mosaic__item--small { align-self: start; height: 68%; }
.mosaic__item:hover img { transform: scale(1.04); }
.mosaic__item--wide:hover img { transform: translateY(var(--py, 0)) scale(1.12); }
.mosaic__item::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 60%, rgba(15, 22, 19, .6) 100%); pointer-events: none; }
.mosaic__item figcaption { position: absolute; z-index: 2; left: 18px; bottom: 16px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.points {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
  margin-top: clamp(56px, 8vh, 96px);
  border-top: 1px solid var(--line);
}
.points li { display: grid; gap: 12px; padding: 26px 0 6px; }
.points__num { font-family: var(--serif); font-size: 15px; letter-spacing: .1em; color: var(--sand); }
.points__text { font-size: 16px; line-height: 1.5; color: var(--gold); }

/* Drieluik met stille eventclips (9:16), middelste iets verlaagd voor ritme */
.triptych {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter) 34px;
}
.triptych__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 9 / 13; background: var(--forest); }
.triptych__item--offset { transform: translateY(clamp(20px, 3vw, 44px)); }
.triptych__item--offset.reveal.is-visible { transform: translateY(clamp(20px, 3vw, 44px)); }
.triptych__video { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.4s var(--ease); }
.triptych__item:hover .triptych__video { transform: scale(1.03); }
.triptych__item::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15, 22, 19, .08) 0%, rgba(15, 22, 19, 0) 40%, rgba(15, 22, 19, .62) 100%); pointer-events: none; }
.triptych__item figcaption { position: absolute; z-index: 2; left: 18px; bottom: 16px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.triptych__note { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; margin: 0; font-size: 11px; line-height: 1.5; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); }
.tl__media--photo { aspect-ratio: 4 / 5; }
.tl__media--photo img { object-position: 50% 30%; }

/* --------------------------------------------------------------------------
   Sectie: Sprekers – waaier van kaarten met verticale naam (naar GM Studios)
   -------------------------------------------------------------------------- */
.speakers {
  position: relative;
  padding: var(--section) 0 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(233, 214, 180, .06) 0%, rgba(233, 214, 180, 0) 70%),
    var(--night);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.speakers__head { text-align: center; margin-bottom: clamp(40px, 6vh, 72px); }
.speakers__title {
  margin: 0 0 18px;
  font-family: var(--display); font-weight: 900; font-stretch: 125%;
  font-size: clamp(40px, 6.4vw, 96px); line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--white);
}

/* Het wiel, naar lesgmstudios.com: kaarten van 360×580 (radius 21px) op een cirkel met straal 1040px, 20° uit elkaar.
   --cw/--ch/--r zijn getallen in px; de kaartnaam schaalt mee via --len (aantal tekens). */
.wheel-wrap {
  --cw: 300; --ch: 483; --r: 866; --top: 20px;
  position: relative;
  height: 760px;
  overflow: hidden;
  isolation: isolate;
}
.wheel {
  position: absolute; left: 50%; top: calc(var(--top) + var(--r) * 1px);
  width: 0; height: 0;
  transform-origin: 0 0;
  transform: rotate(var(--rot, 0deg));
  will-change: transform;
}
.card {
  position: absolute; left: 0; top: 0;
  width: calc(var(--cw) * 1px); height: calc(var(--ch) * 1px);
  border-radius: 21px; overflow: hidden;
  border: 1px solid transparent;
  background: linear-gradient(var(--forest), var(--forest)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, .6) 0%, rgba(0, 0, 0, .6) 50%, rgba(255, 255, 255, .6) 100%) border-box;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .65);
  transform-origin: 0 0;
  transform: rotate(var(--a)) translate(-50%, calc((var(--r) + var(--lift, 0)) * -1px)) translateZ(0);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  backface-visibility: hidden;
}
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; display: block; }
.card__img--center { object-position: 50% 30%; }
/* Kleurverloop onderin, per spreker een eigen kleur (zoals de rode, blauwe en paarse kaarten bij GM) */
.card__tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .25) 60%, var(--tint) 100%); pointer-events: none; }
.card--amir  { --tint: #b8892b; }   /* goud/amber */
.card--rabi  { --tint: #9b1c1c; }   /* rood */
.card--usman { --tint: #1c3f9e; }   /* blauw */
.card--syed  { --tint: #7a2cc4; }   /* paars */
.card--s2    { --tint: #0f6e6e; }   /* teal */
.card--s6    { --tint: #7a4b16; }   /* brons */
.card--s7    { --tint: #1f5a3a; }   /* diepgroen */
.card__img--vol { object-position: 50% 50%; }
/* Naam: groot, wit, vet, verticaal langs de rechterrand, leest van onder naar boven (zoals in de GM-portretten) */
.card__name {
  position: absolute; right: calc(var(--cw) * .045px); bottom: calc(var(--ch) * .03px); top: calc(var(--ch) * .03px);
  display: flex; align-items: flex-end;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--display); font-weight: 900; font-stretch: 100%;
  font-size: min(calc((var(--ch) - 40) * 1px / var(--len) / .72), calc(var(--ch) * .125px));
  line-height: .9; letter-spacing: -.01em;
  text-transform: uppercase; white-space: nowrap;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
  pointer-events: none;
}
/* Tekst en knop ín de boog */
.speakers__foot {
  position: absolute; left: 0; right: 0; bottom: 40px; z-index: 4;
  width: min(560px, 60vw); margin: 0 auto;
  display: grid; justify-items: center; gap: 18px;
  text-align: center;
}
.speakers__signed { margin: 0; font-family: var(--script); font-style: italic; font-size: clamp(18px, 1.6vw, 24px); color: var(--gold-dark); }
.speakers__foot .lead { font-size: 15px; }

@media (max-width: 1100px) {
  .wheel-wrap { --cw: 230; --ch: 370; --r: 664; height: 600px; }
  .speakers__foot { width: min(520px, 70vw); bottom: 28px; }
}
@media (max-width: 860px) {
  .speakers { padding: 72px 0 0; }
  .speakers__head { margin-bottom: 20px; }
  .wheel-wrap { --cw: 190; --ch: 306; --r: 548; --top: 16px; height: 560px; }
  .card { border-radius: 14px; }
  .speakers__foot { position: absolute; left: 0; right: 0; bottom: 16px; width: auto; padding: 0 var(--gutter); gap: 12px; }
  .speakers__foot .lead { font-size: 14px; }
  .speakers__foot .btn { width: 100%; }
}
@media (max-width: 480px) {
  .wheel-wrap { --cw: 150; --ch: 242; --r: 432; height: 470px; }
  .card { border-radius: 12px; }
}

/* --------------------------------------------------------------------------
   Sectie: Het project (AMRA) – opening, uitleg naast beeld, galerij, Phase Two, CTA
   -------------------------------------------------------------------------- */
.project { background: var(--forest-deep); padding-bottom: var(--section); }
.project__band { position: relative; height: clamp(560px, 96vh, 900px); overflow: hidden; background: var(--forest); display: flex; align-items: flex-end; }
.project__band img, .project__band-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transform: translateY(var(--py, 0)) scale(1.1); will-change: transform; }
.project__band-shade { position: absolute; inset: 0; background: linear-gradient(180deg, var(--night) 0%, rgba(15, 22, 19, .75) 14%, rgba(15, 22, 19, .08) 42%, rgba(15, 22, 19, .25) 65%, rgba(21, 31, 25, .98) 100%); }
.project__band-inner { position: relative; width: 100%; padding-bottom: clamp(40px, 6vh, 72px); text-shadow: 0 2px 24px rgba(15, 22, 19, .7); }
.project__band-inner .eyebrow { color: var(--gold); }
.project__h3 { max-width: 18ch; margin: 0 0 18px; font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); line-height: 1.1; color: var(--gold-light); }

/* 2. AMRA in beeld: horizontale rij grote kaarten (naar GM Studios) */
.big { margin: 0; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(34px, 4.2vw, 64px); line-height: .96; letter-spacing: -.01em; text-transform: uppercase; color: var(--white); }
.showcase__head { display: flex; align-items: center; gap: 24px; padding-top: clamp(56px, 8vh, 96px); margin-bottom: 26px; }
.arrows { display: flex; gap: 8px; }
.arrow { width: 52px; height: 40px; border-radius: 999px; border: 1px solid rgba(247, 244, 238, .18); background: rgba(247, 244, 238, .06); color: var(--white); cursor: pointer; display: grid; place-items: center; transition: background-color .25s var(--ease), border-color .25s var(--ease); }
.arrow:hover { background: rgba(247, 244, 238, .14); border-color: rgba(247, 244, 238, .4); }
.arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.showcase { display: flex; gap: clamp(14px, 1.5vw, 22px); padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2)); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2)); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.showcase::-webkit-scrollbar { display: none; }
.show { flex: 0 0 clamp(300px, 34vw, 500px); scroll-snap-align: start; margin: 0; }
.show:last-child { margin-right: max(var(--gutter), calc((100vw - var(--max)) / 2)); }
.show__img { position: relative; aspect-ratio: 16 / 11; overflow: hidden; border-radius: 12px; background: var(--forest); box-shadow: inset 0 0 0 1px rgba(247, 244, 238, .1); }
.show__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.show:hover .show__img img { transform: scale(1.04); }
.show__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 45%, var(--tint) 100%); pointer-events: none; }
.show--gold { --tint: rgba(201, 162, 77, .75); } .show--sage { --tint: rgba(159, 203, 176, .7); } .show--forest { --tint: rgba(34, 73, 52, .9); } .show--burgundy { --tint: rgba(123, 46, 24, .8); }
.show figcaption { display: grid; gap: 8px; padding: 14px 2px 0; }
.show__tag { width: fit-content; padding: 4px 9px; border-radius: 4px; background: rgba(247, 244, 238, .08); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-70); }
.show__title { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(17px, 1.5vw, 22px); letter-spacing: .01em; text-transform: uppercase; color: var(--white); }

/* 3. Concept en Phase Two: tekst + accordion links, browservenster rechts */
.project__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px clamp(40px, 6vw, 96px); align-items: start; padding-top: clamp(72px, 10vh, 128px); }
.project__text .big { margin-bottom: 18px; }
.project__text .lead { font-size: 15px; }
.rij-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
.browser__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s var(--ease); }
.browser__img.is-on { opacity: 1; }

@media (max-width: 1024px) {
  .project__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .project__grid .browser { position: static; order: -1; }
}
@media (max-width: 860px) {
  .project { padding-bottom: 72px; }
  .project__band { height: clamp(420px, 70vh, 560px); }
  .showcase__head { padding-top: 40px; margin-bottom: 18px; flex-direction: column-reverse; align-items: flex-start; gap: 14px; }
  .showcase { gap: 12px; }
  .show { flex: 0 0 78%; }
  .show__title { font-size: 16px; }
  .project__grid { padding-top: 56px; }
  .project__text .big { font-size: clamp(30px, 9vw, 40px); }
}

/* --------------------------------------------------------------------------
   Sectie: Programma  (tijdlijn met twee momenten)
   -------------------------------------------------------------------------- */
.attend { padding: var(--section) 0; background: var(--night); border-top: 1px solid var(--line); }
.timeline { position: relative; display: grid; gap: clamp(40px, 6vh, 72px); }
.tl {
  display: grid; grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--line);
}
.tl__date { display: grid; align-content: start; gap: 2px; }
.tl__day { font-family: var(--serif); font-size: clamp(56px, 6vw, 88px); line-height: .9; color: var(--gold-light); }
.tl__month { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-55); }
.tl__body { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.tl__label { margin: 0 0 10px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); }
.tl__title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.1; color: var(--gold-light); }
.tl__text > p:not(.tl__label) { max-width: 52ch; margin: 16px 0 0; font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--ink-70); }
.tl__meta { display: grid; margin: 22px 0 0; border-top: 1px solid var(--line); }
.tl__meta > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); }
.tl__meta dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); }
.tl__meta dd { margin: 0; font-size: 14px; color: var(--gold); }
.tl__speakers { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 18px; }
.tl__speakers li { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gold); }
.tl__speakers img, .tl__initials { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 1px solid var(--line-strong); }
.tl__initials { display: inline-grid; place-items: center; font-family: var(--serif); font-size: 12px; letter-spacing: .06em; color: var(--gold-dark); background: linear-gradient(160deg, var(--forest-light) 0%, var(--forest-deep) 100%); }
.tl__actions { display: grid; gap: 12px; justify-items: start; margin-top: 26px; }
.tl__note { margin: 0; font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--ink-55); }
.tl__media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--forest); }
.tl__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.tl__img--towers { object-position: 42% 38%; transform: scale(1.3); transform-origin: 42% 38%; }
.tl:hover .tl__media img { transform: scale(1.04); }
.tl:hover .tl__img--towers { transform: scale(1.34); }
.tl__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 60%, rgba(15, 22, 19, .45) 100%); pointer-events: none; }
.attend__note { margin: clamp(32px, 5vh, 48px) 0 0; }

/* --------------------------------------------------------------------------
   Sectie: Aanmelden  (gecentreerd formulier)
   -------------------------------------------------------------------------- */
.signup {
  position: relative;
  padding: var(--section) 0;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(233, 214, 180, .06) 0%, rgba(233, 214, 180, 0) 70%),
    var(--forest-deep);
  border-top: 1px solid var(--line);
}
.signup__inner { max-width: 820px; }
.signup .section-head { margin-bottom: clamp(36px, 5vh, 56px); }
.signup .lead--center { margin-top: 20px; }

.form { position: relative; padding: clamp(24px, 3.4vw, 44px); border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(180deg, rgba(42, 58, 49, .5) 0%, rgba(21, 31, 25, .92) 100%); }
.form__dev { margin: 0 0 24px; padding: 12px 14px; border: 1px dashed rgba(233, 214, 180, .45); border-radius: 6px; font-size: 13px; line-height: 1.55; color: var(--gold); background: rgba(123, 46, 24, .18); }
.form__dev code, .form__done-text code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--gold-light); }
.form__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__progress { display: flex; gap: 28px; margin: 0 0 28px; padding: 0 0 18px; border-bottom: 1px solid var(--line); }
.form__progress[hidden] { display: none; }
.form__progress li { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); }
.form__progress li span { display: inline-grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: 13px; letter-spacing: 0; }
.form__progress li.is-current { color: var(--gold); }
.form__progress li.is-current span { border-color: var(--gold); color: var(--gold-light); }
.form__progress li.is-done span { background: var(--gold); border-color: var(--gold); color: var(--night); }
.form__step { display: none; margin: 0; padding: 0; border: 0; min-width: 0; }
.form__step.is-active { display: block; }
.form__legend { margin: 0 0 18px; padding: 0; font-family: var(--serif); font-size: clamp(24px, 2vw, 30px); line-height: 1.15; color: var(--gold-light); }
.choice { display: grid; gap: 12px; }
.choice__card { display: block; cursor: pointer; }
.choice__card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice__box { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start; padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: rgba(15, 22, 19, .35); transition: border-color .3s var(--ease), background-color .3s var(--ease); }
.choice__card--primary .choice__box { border-color: rgba(233, 214, 180, .32); background: rgba(233, 214, 180, .06); }
.choice__card:hover .choice__box { border-color: rgba(233, 214, 180, .45); }
.choice__card input:focus-visible + .choice__box { outline: 2px solid var(--gold); outline-offset: 3px; }
.choice__card input:checked + .choice__box { border-color: var(--gold); background: rgba(233, 214, 180, .10); }
.choice__mark { position: relative; width: 22px; height: 22px; margin-top: 2px; border: 1px solid rgba(233, 214, 180, .5); border-radius: 50%; }
.choice__mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--gold); transform: scale(0); transition: transform .25s var(--ease); }
.choice__card input:checked + .choice__box .choice__mark { border-color: var(--gold); }
.choice__card input:checked + .choice__box .choice__mark::after { transform: scale(1); }
.choice__body { display: grid; gap: 4px; }
.choice__title { font-family: var(--serif); font-size: 21px; line-height: 1.2; color: var(--gold-light); }
.choice__card--primary .choice__title { font-size: 24px; }
.choice__sub { font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--ink-70); }
.form__sub { margin-top: 22px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: rgba(15, 22, 19, .35); }
.form__sublabel { margin: 0 0 12px; font-size: 15px; color: var(--gold); }
.pill-group { display: flex; gap: 10px; }
.pill { position: relative; cursor: pointer; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span { display: inline-flex; align-items: center; justify-content: center; min-width: 84px; min-height: 44px; padding: 0 22px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 999px; font-size: 14px; color: var(--gold); transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.pill input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }
.pill input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--night); }
.form__hint { margin: 14px 0 0; font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--ink-55); }
.form__hint--small { font-size: 12px; }
.form__error { min-height: 1.4em; margin: 14px 0 0; font-size: 13px; color: #e8b39c; }
.form__actions { margin-top: 18px; }
.form__actions .btn { width: 100%; }
.summary { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 16px; align-items: center; margin-bottom: 22px; padding: 14px 18px; border: 1px solid rgba(233, 214, 180, .28); border-radius: 8px; background: rgba(233, 214, 180, .06); }
.summary__label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); }
.summary__text { font-size: 14px; line-height: 1.5; color: var(--gold); }
.summary__edit { justify-self: end; padding: 6px 0; border: 0; background: none; cursor: pointer; font-family: var(--sans); font-size: 13px; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.summary__edit:hover { color: var(--gold-light); }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.field input { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(233, 214, 180, .28); border-radius: 6px; background: rgba(15, 22, 19, .55); font-family: var(--sans); font-size: 16px; color: var(--gold-light); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(233, 214, 180, .15); }
.field input.is-invalid { border-color: #c8735a; }
.form__done, .form__notsaved { outline: none; }
.form__done-title { margin: 10px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1; color: var(--gold-light); }
.form__done-text { margin: 16px 0 0; font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--ink-70); }
.form__done-sub { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.form__payload { margin: 16px 0 0; padding: 14px 16px; overflow-x: auto; border: 1px dashed rgba(233, 214, 180, .35); border-radius: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; line-height: 1.6; color: var(--gold); background: rgba(15, 22, 19, .6); }

/* VSL-placeholder */
.vsl { position: relative; margin: 0 0 clamp(36px, 5vh, 56px); overflow: hidden; border-radius: 12px; aspect-ratio: 16 / 9; background: var(--forest); border: 1px solid var(--line); }
.vsl__poster { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.85); }
.vsl__shade { position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(15, 22, 19, .15) 0%, rgba(15, 22, 19, .7) 100%); }
.vsl__center { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 14px; text-align: center; }
.vsl__play { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(247, 244, 238, .45); background: rgba(15, 22, 19, .45); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.vsl__play svg { width: 30px; height: 30px; fill: var(--gold-light); margin-left: 4px; }
.vsl__label { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); color: var(--gold-light); text-shadow: 0 2px 20px rgba(15, 22, 19, .6); }
.vsl__caption { position: absolute; left: 20px; right: 20px; bottom: 16px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(247, 244, 238, .7); }

/* Formulier: 4 stappen, meerkeuze */
.form__intro { margin: -6px 0 18px; font-size: 14px; font-weight: 300; color: var(--ink-70); }
.choice__mark--check { border-radius: 5px; }
.choice__mark--check::after { inset: 4px; border-radius: 2px; }
.choice__date { display: inline-block; margin-left: 10px; font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); vertical-align: middle; }
.pill-group--wrap { flex-wrap: wrap; }
.pill--day span { flex-direction: column; gap: 2px; min-height: 52px; padding: 8px 18px; border-radius: 10px; line-height: 1.2; }
.pill--day small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.form__actions--row { display: flex; gap: 12px; }
.form__actions--row .btn { width: auto; flex: 1; }
.form__actions--row .btn--ghost { flex: 0 0 auto; }
.form__progress { flex-wrap: wrap; gap: 18px 24px; }

.questions { display: grid; gap: 22px; }
.question { padding: 18px 18px 20px; border: 1px solid var(--line); border-radius: 8px; background: rgba(15, 22, 19, .35); }
.question.is-invalid { border-color: #c8735a; }
.question__label { margin: 0 0 12px; font-size: 15px; color: var(--gold); }
.question__num { margin-right: 10px; font-family: var(--serif); font-size: 14px; letter-spacing: .08em; color: var(--sage); }
.question__opt { margin-left: 8px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.question__ph { margin: 0 0 12px; }
.question--placeholder { border-style: dashed; }

.review { display: grid; gap: 0; margin: 0 0 6px; border-top: 1px solid var(--line); }
.review__row { display: grid; grid-template-columns: 160px 1fr auto; gap: 12px 18px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.review__row dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); padding-top: 3px; }
.review__row dd { margin: 0; font-size: 15px; line-height: 1.55; color: var(--gold); }
.review__row dd small { font-size: 12px; color: var(--ink-55); }
.review__edit { padding: 2px 0; border: 0; background: none; cursor: pointer; font-family: var(--sans); font-size: 13px; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.review__edit:hover { color: var(--gold-light); }

@media (max-width: 860px) {
  .vsl { border-radius: 8px; margin-bottom: 28px; }
  .vsl__play { width: 64px; height: 64px; }
  .vsl__caption { font-size: 10px; bottom: 12px; }
  .choice__date { display: block; margin: 6px 0 0; }
  .form__actions--row { flex-direction: column-reverse; }
  .form__actions--row .btn { width: 100%; }
  .review__row { grid-template-columns: 1fr auto; }
  .review__row dd { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   Sectie: FAQ  (compact, gecentreerd)
   -------------------------------------------------------------------------- */
.faq { padding: var(--section) 0; background: var(--night); border-top: 1px solid var(--line); }
.faq__inner { max-width: 760px; }
.faq .section-head { margin-bottom: clamp(32px, 5vh, 48px); }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; list-style: none; cursor: pointer; font-family: var(--serif); font-size: clamp(19px, 1.5vw, 22px); line-height: 1.25; color: var(--gold); transition: color .25s var(--ease); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover, .faq__item[open] .faq__q { color: var(--gold-light); }
.faq__q:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }
.faq__icon { position: relative; flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 50%; transition: border-color .3s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--gold); transform: translate(-50%, -50%); transition: transform .4s var(--ease); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { border-color: var(--gold); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 2px 20px; max-width: 60ch; }
.faq__a p { margin: 0; font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--ink-70); animation: faq-in .4s var(--ease) both; }
.faq__foot { display: grid; justify-items: center; margin-top: 32px; }

/* --------------------------------------------------------------------------
   Afsluitende CTA
   -------------------------------------------------------------------------- */
.cta { position: relative; isolation: isolate; display: grid; place-items: center; min-height: clamp(500px, 72vh, 700px); padding: clamp(64px, 10vh, 112px) var(--gutter); overflow: hidden; background: var(--forest); text-align: center; }
.cta__media { position: absolute; inset: 0; z-index: -1; }
.cta__media img, .cta__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transform: translateY(var(--py, 0)) scale(1.1); will-change: transform; }
.cta__video { z-index: 1; }
.cta__shade { z-index: 2; }
@media (prefers-reduced-motion: reduce) { .cta__video { display: none; } }
.cta__shade { position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 55%, rgba(15, 22, 19, .32) 0%, rgba(15, 22, 19, .74) 100%), linear-gradient(180deg, rgba(15, 22, 19, .9) 0%, rgba(15, 22, 19, .2) 30%, rgba(15, 22, 19, .2) 70%, rgba(15, 22, 19, .96) 100%); }
.cta__inner { max-width: 820px; }
.cta__title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 84px); line-height: 1.02; text-wrap: balance; color: var(--gold-light); text-shadow: 0 2px 30px rgba(15, 22, 19, .6); }
.cta__text { max-width: 40ch; margin: 22px auto 0; font-size: clamp(16px, 1.25vw, 18px); font-weight: 300; line-height: 1.65; color: var(--gold); }
.cta .btn { margin-top: 36px; min-width: 260px; }

/* --------------------------------------------------------------------------
   Footer  (compact)
   -------------------------------------------------------------------------- */
.footer { background: #0b100e; border-top: 1px solid var(--line); color: var(--ink-70); }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 36px clamp(28px, 4vw, 64px); padding-top: clamp(48px, 7vh, 72px); padding-bottom: clamp(36px, 5vh, 56px); }
.footer__logo { display: inline-block; color: var(--gold); }
.footer__tagline { max-width: 32ch; margin: 16px 0 0; font-size: 13px; line-height: 1.7; color: var(--ink-55); }
.footer__heading { margin: 0 0 12px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-55); }
.footer ul { display: grid; gap: 8px; }
.footer li { font-size: 14px; line-height: 1.5; }
.footer__col a { color: var(--gold); transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--gold-light); }
.footer__ext { display: inline-flex; align-items: center; gap: 6px; }
.footer__ext svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer__col a[aria-disabled="true"] { color: var(--ink-55); cursor: default; }
.footer__soon { margin-left: 6px; padding: 1px 7px; border: 1px dashed rgba(233, 214, 180, .35); border-radius: 4px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-55); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding-top: 18px; padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); font-size: 12px; letter-spacing: .06em; color: var(--ink-55); }
.footer__bottom p { margin: 0; }
.footer__top { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); transition: color .25s var(--ease); }
.footer__top svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer__top:hover { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   Beweging
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-group] .reveal:nth-child(2) { transition-delay: .1s; }
[data-reveal-group] .reveal:nth-child(3) { transition-delay: .2s; }
[data-reveal-group] .reveal:nth-child(4) { transition-delay: .3s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes scroll-hint { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 35% { transform: scaleY(1); transform-origin: top; opacity: 1; } 70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__eyebrow, .hero__sub, .corner, .hero__hint, .hero__title .w { opacity: 1; transform: none; animation: none; transition: none; filter: none; }
  .hero__grain, .hero__hint-line { animation: none; }
  .hero { --hp: 0 !important; }
  .hero__poster, .hero__video, .hero__title, .hero__inner { transform: none; }
  .hero__scroll span, .faq__a p { animation: none; }
  .mosaic__item img, .triptych__video, .bento__item img, .speaker__img, .tl__media img, .project__band img, .cta__media img { transition: none; transform: none; }
  .btn, .link-arrow svg, .nav__links a::after { transition: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .bento { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
  .bento__item { aspect-ratio: 4 / 3; }
  .bento__item--a, .bento__item--b, .bento__item--c, .bento__item--d { grid-column: auto; grid-row: auto; }
  .bento__item--d { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
  .speakers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts, .points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  .tl__body { grid-template-columns: minmax(0, 1fr); }
  .tl__media { order: -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; --section: 80px; }
  .nav__cta { min-height: 40px; padding: 0 16px; font-size: 13px; }
  .nav__logo { gap: 14px; }
  .logo-mark--apex { width: 80px; height: 21px; }
  .logo-mark--amra { width: 72px; height: 21px; }

  .nav__links { display: none; }
  .hero { --hp: 0 !important; justify-content: flex-end; }   /* mobiel: alleen de intro-animatie, geen scroll-effect */
  .hero__inner, .hero__title, .hero__poster, .hero__video { transform: none; opacity: 1; }
  .hero__shade { background: linear-gradient(180deg, rgba(15, 22, 19, .55) 0%, rgba(15, 22, 19, .12) 28%, rgba(15, 22, 19, .3) 52%, rgba(15, 22, 19, .93) 100%), rgba(29, 42, 35, .28); }
  .hero__inner { padding: 32px var(--gutter) 0; }
  .hero__eyebrow { font-size: 16px; gap: 4px 10px; margin-bottom: 14px; }
  .hero__eyebrow-org, .hero__eyebrow-sep--last, .hero__orn { display: none; }   /* organisatoren, streepje en ornamenten niet op klein scherm */
  .hero__title { font-size: clamp(28px, 8.8vw, 40px); font-stretch: 100%; line-height: 1.02; letter-spacing: 0; }
  .hero__line:nth-child(2) .w { display: inline; }         /* 'VASTGOED-EVENEMENT' mag afbreken (&shy;) */
  .hero__sub { font-size: 13px; line-height: 1.6; max-width: 36ch; margin-top: 14px; }
  /* Knoppen naast elkaar, in de flow onder de tekst (zoals de referentie op telefoon) */
  .hero__corners { position: static; display: grid; grid-template-columns: .92fr 1.08fr; gap: 10px; opacity: 1; padding: 20px var(--gutter) calc(18px + env(safe-area-inset-bottom, 0px)); width: 100%; }
  .hero__hint { display: none; }
  .corner { width: 100%; justify-content: flex-start; }
  .corner__icon { width: 40px; height: 44px; flex: 0 0 40px; }
  .corner__icon svg { width: 15px; height: 15px; }
  .corner__label { padding: 0 8px 0 10px; font-size: 11px; letter-spacing: .02em; white-space: nowrap; }
  .hero__scroll { display: none; }

  .event__head { grid-template-columns: minmax(0, 1fr); margin-bottom: 36px; }
  .mosaic { display: flex; height: auto; gap: 12px; padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .mosaic::-webkit-scrollbar { display: none; }
  .mosaic__item { flex: 0 0 78%; height: auto !important; aspect-ratio: 4 / 5; scroll-snap-align: start; align-self: auto; }
  .mosaic__item:last-child { margin-right: var(--gutter); }
  .triptych { display: flex; gap: 12px; padding: 0 var(--gutter) 58px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .triptych::-webkit-scrollbar { display: none; }
  .triptych__item { flex: 0 0 66%; scroll-snap-align: start; }
  .triptych__item--offset, .triptych__item--offset.reveal.is-visible { transform: none; }
  .triptych__item:last-of-type { margin-right: var(--gutter); }
  .triptych__note { left: var(--gutter); }
  .tl__media--photo { aspect-ratio: 16 / 10; }
  .points { grid-template-columns: minmax(0, 1fr); margin-top: 40px; }
  .points li { grid-template-columns: 40px 1fr; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }

  .speakers__grid { display: flex; gap: 12px; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .speakers__grid::-webkit-scrollbar { display: none; }
  .speaker { flex: 0 0 74%; scroll-snap-align: start; }
  .speaker:last-child { margin-right: var(--gutter); }
  .speakers__foot { margin-top: 40px; }
  .speakers__foot .btn { width: 100%; }

  .project__band { height: clamp(420px, 70vh, 560px); }
  .project__intro { grid-template-columns: minmax(0, 1fr); gap: 18px; padding-top: 44px; padding-bottom: 44px; }
  .pillars { padding: 18px var(--gutter); }
  .pillars ul { justify-content: flex-start; gap: 6px 0; }
  .pillars li { font-size: 17px; }
  .pillars li:not(:last-child)::after { margin: 0 12px; }
  .bento { grid-template-columns: minmax(0, 1fr); margin-top: 40px; gap: 12px; }
  .bento__item, .bento__item--d { aspect-ratio: 4 / 3; grid-column: auto; }
  .facts { grid-template-columns: minmax(0, 1fr); margin-top: 40px; }
  .facts li { grid-template-columns: 40px 1fr; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .project__foot { flex-direction: column; align-items: flex-start; padding: 36px 0 var(--section); }
  .project__foot .btn { width: 100%; }

  .tl { grid-template-columns: minmax(0, 1fr); gap: 18px; padding-top: 24px; }
  .tl__date { grid-template-columns: auto auto; justify-content: start; align-items: baseline; gap: 12px; }
  .tl__day { font-size: 48px; }
  .tl__meta > div { grid-template-columns: 100px 1fr; gap: 12px; }
  .tl__actions { justify-items: stretch; }
  .tl__actions .btn { width: 100%; }

  .form { padding: 20px 18px 24px; }
  .form__progress { gap: 18px; }
  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .choice__box { padding: 16px; gap: 12px; }
  .choice__card--primary .choice__title { font-size: 22px; }
  .summary { grid-template-columns: 1fr auto; }
  .summary__text { grid-column: 1 / -1; }

  .faq__q { padding: 16px 0; gap: 14px; font-size: 18px; }
  .faq__foot .btn { width: 100%; }

  .cta { min-height: 70vh; padding: 72px var(--gutter); }
  .cta .btn { width: 100%; }

  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: 48px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Lage schermen (liggende telefoon, kleine laptop): compacter zodat de hero in beeld blijft */
@media (max-height: 520px) {
  .hero__inner { padding-top: 16px; padding-bottom: 0; }
  .hero__eyebrow { margin-bottom: 8px; font-size: 14px; }
  .hero__title { font-size: clamp(26px, 5.2vw, 40px); }
  .hero__sub { display: none; }
  .hero__corners { padding-top: 14px; }
  .hero__hint { display: none; }
}

/* ===== COOKIES (banner + instellingen) ===== */
.ck { position: fixed; inset: auto 0 0 0; z-index: 90; padding: 0 16px 16px; pointer-events: none; }
.ck__box { pointer-events: auto; max-width: 720px; margin: 0 auto; padding: 22px 24px; border: 1px solid rgba(233, 214, 180, .3); border-radius: 12px; background: rgba(15, 22, 19, .96); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7); backdrop-filter: blur(10px); }
.ck__title { margin: 0 0 6px; font-family: var(--serif); font-size: 20px; color: var(--gold-light); }
.ck__text { margin: 0; font-size: 14px; font-weight: 300; line-height: 1.6; color: var(--ink-70); }
.ck__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.ck__opts { display: grid; gap: 10px; margin: 16px 0 4px; }
.ck__row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.ck__row b { display: block; font-weight: 500; font-size: 14px; color: var(--gold); }
.ck__row small { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 300; line-height: 1.5; color: var(--ink-55); }
.ck__row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ck__sw { position: relative; width: 40px; height: 22px; border-radius: 999px; background: rgba(233, 214, 180, .2); transition: background .25s; }
.ck__sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-light); transition: transform .25s; }
.ck__row input:checked + .ck__sw { background: var(--gold); }
.ck__row input:checked + .ck__sw::after { transform: translateX(18px); background: var(--night); }
.ck__row input:disabled + .ck__sw { opacity: .6; }
.ck__row input:focus-visible + .ck__sw { outline: 2px solid var(--gold); outline-offset: 3px; }
.ck__acts { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.ck__acts .btn { min-height: 42px; padding: 0 18px; font-size: 13px; }
.ck__link { margin-left: auto; padding: 6px 0; border: 0; background: none; cursor: pointer; font-family: var(--sans); font-size: 13px; color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.ck__link:hover { color: var(--gold-light); }
.ck--settings .ck__acts .btn--primary:first-child, .ck--settings .ck__acts .btn--ghost { display: none; }
@media (max-width: 600px) { .ck { padding: 0 10px 10px; } .ck__box { padding: 18px 16px; } .ck__acts .btn { flex: 1 1 100%; } .ck__link { margin: 4px auto 0; } }

/* ===== JURIDISCHE PAGINA'S + 404 ===== */
.legal { padding: calc(var(--nav-h, 76px) + clamp(40px, 8vh, 96px)) 0 clamp(64px, 10vh, 120px); background: var(--night); min-height: 70vh; }
.legal__inner { max-width: 760px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); text-decoration: none; }
.legal__back:hover { color: var(--gold-light); }
.legal__back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.legal h1 { margin: 0 0 8px; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; color: var(--gold-light); }
.legal__meta { margin: 0 0 36px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.legal h2 { margin: 36px 0 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2vw, 28px); line-height: 1.2; color: var(--gold); }
.legal p, .legal li { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--ink-70); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal__note { margin-top: 40px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; color: var(--ink-55); }
.legal--404 { text-align: center; display: grid; place-items: center; }
.legal--404 .legal__inner { max-width: 640px; }
.legal--404 .code { font-family: var(--serif); font-size: clamp(90px, 16vw, 180px); line-height: 1; color: var(--gold); opacity: .45; }
.legal--404 .btn { margin: 10px 8px 0; }
.nav--simple .nav__links { display: none; }
/* correcties: verborgen cookie-onderdelen, knoppen en lijsten op juridische pagina's */
.ck__opts[hidden], .ck__acts [hidden] { display: none !important; }
.legal ul { list-style: disc; }
.legal ul li { padding-left: 4px; }
.legal a.btn { text-decoration: none; }
.legal a.btn--primary { color: var(--night); }
.legal a.btn--ghost { color: var(--gold); }

/* ===== ONTDEK AMRA (schermvullende vragenlijst, opzet gelijk aan amra-uae.com) ===== */
body.od-open { overflow: hidden; }
.od { position: fixed; inset: 0; z-index: 95; overflow: auto; background: #1f2d24; animation: od-in .3s var(--ease) both; }
.od__bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; }
.od__bg video, .od__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(7px) brightness(.5) saturate(.7); transform: scale(1.06); }
.od__bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31, 45, 36, .82) 0%, rgba(31, 45, 36, .7) 50%, rgba(15, 22, 19, .9) 100%); }
.od__x, .od__body { position: relative; z-index: 1; }
.od__step { animation: od-step .45s var(--ease) both; }
@keyframes od-step { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.od__stap { margin: 0 0 10px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); text-align: center; }
@keyframes od-in { from { opacity: 0; } to { opacity: 1; } }
.od__x { position: fixed; top: 18px; right: 22px; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: 50%; background: transparent; color: var(--gold-light); font-size: 30px; line-height: 1; cursor: pointer; opacity: .8; }
.od__x:hover { opacity: 1; background: rgba(233, 214, 180, .12); }
.od__body { width: min(960px, 100%); min-height: 100%; margin: 0 auto; padding: clamp(56px, 9vh, 96px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 72px); }
.od__top { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; margin: 0 0 clamp(20px, 4vh, 36px); }
.od__back { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 0; background: none; color: var(--gold-light); cursor: pointer; opacity: .85; }
.od__back svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.od__back:hover { opacity: 1; }
.od__back--leeg { pointer-events: none; }
.od__bar { display: flex; gap: 14px; }
.od__bar i { flex: 1; height: 4px; border-radius: 2px; background: rgba(247, 244, 238, .18); }
.od__bar i.is-on { background: var(--gold-light); }
.od__q { margin: 0 0 clamp(18px, 3vh, 28px); font-family: var(--sans); font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; color: var(--gold-light); text-align: center; text-wrap: balance; }
.od__sub { max-width: 48ch; margin: -10px auto 22px; font-size: clamp(15px, 1.2vw, 17px); font-weight: 300; line-height: 1.5; color: var(--gold); text-align: center; }
.od__video { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 16 / 9; max-width: 760px; margin: 0 auto; background: var(--forest); border: 1px solid rgba(233, 214, 180, .2); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8); }
.od__video img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.8); }
.od__video-shade { position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(15, 22, 19, .1), rgba(15, 22, 19, .55)); }
.od__video-c { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; text-align: center; }
.od__video-t { font-family: var(--serif); font-size: 22px; color: var(--gold-light); }
.od__video-s { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); }
.od__cta { display: flex; width: 100%; max-width: 760px; margin: 18px auto 0; border-radius: 8px; }
.od__arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
/* vraag 1: fotokaarten, grote kaart links */
.od__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(130px, 1fr); gap: 16px; }
.od__card { position: relative; min-height: 160px; border: 1px solid rgba(233, 214, 180, .14); border-radius: 12px; background: var(--forest) center / cover no-repeat; cursor: pointer; overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.od__card::after { content: ""; position: absolute; inset: 0; background: rgba(31, 45, 36, .55); transition: background .3s var(--ease); }
.od__card span { position: absolute; inset: 0; z-index: 1; display: grid; place-content: center; justify-items: center; gap: 10px; font-family: var(--sans); font-size: 16px; color: var(--gold-light); }
.od__card svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transform: rotate(90deg); opacity: .7; }
.od__card { box-shadow: 0 16px 40px -20px rgba(0, 0, 0, .7); }
.od__card span { text-shadow: 0 2px 14px rgba(15, 22, 19, .7); }
.od__card:hover { transform: translateY(-4px); border-color: rgba(233, 214, 180, .7); box-shadow: 0 24px 50px -20px rgba(233, 214, 180, .3); }
.od__card:hover::after { background: rgba(31, 45, 36, .35); }
.od__card--big { order: -1; grid-row: span 2; min-height: 320px; }
/* vraag 2 en 3: vakken in een raster */
.od__grid { display: grid; gap: 14px; }
.od__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.od__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.od__opt { display: grid; align-content: center; justify-items: start; gap: 8px; min-height: 104px; padding: 18px 22px; border: 1px solid rgba(233, 214, 180, .14); border-radius: 12px; background: rgba(247, 244, 238, .035); font-family: var(--sans); font-size: 16px; line-height: 1.3; color: var(--gold-light); text-align: left; cursor: pointer; transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease); }
.od__opt .od__arrow { width: 16px; height: 16px; opacity: .55; }
.od__opt { position: relative; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); background: rgba(21, 31, 25, .55); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6); }
.od__opt::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 2px; border-radius: 2px; background: var(--gold); opacity: 0; transition: opacity .25s var(--ease); }
.od__opt:hover, .od__opt.is-on { border-color: rgba(233, 214, 180, .6); background: rgba(233, 214, 180, .08); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(233, 214, 180, .25); }
.od__opt:hover::before, .od__opt.is-on::before { opacity: 1; }
.od__opt:hover .od__arrow { opacity: 1; transform: translateX(3px); }
.od__opt .od__arrow { transition: transform .25s var(--ease), opacity .25s var(--ease); }
/* gegevens */
.od__form { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; }
.od__f label { display: block; margin-bottom: 8px; font-size: 15px; color: var(--gold-light); }
.od__f input, .od__tel select { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(233, 214, 180, .2); border-radius: 8px; background: rgba(21, 31, 25, .6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-family: var(--sans); font-size: 16px; color: var(--gold-light); transition: border-color .25s var(--ease); }
.od__f input::placeholder { color: rgba(233, 214, 180, .45); }
.od__f input:focus, .od__tel select:focus { outline: none; border-color: var(--gold); }
.od__tel { display: grid; grid-template-columns: 130px 1fr; gap: 12px; }
.od__tel select { padding: 0 14px; cursor: pointer; appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-light) 50%), linear-gradient(135deg, var(--gold-light) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.od__tel select option { color: #1f2d24; }
.od__form .od__cta { margin-top: 4px; max-width: none; }
.od__hint { margin: 0; font-size: 14px; color: rgba(233, 214, 180, .55); text-align: center; }
.od__hint a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.od__done { max-width: 560px; margin: 0 auto; text-align: center; padding: 10px 0; }
.od__done .od__back { display: block; width: auto; height: auto; margin: 18px auto 0; font-family: var(--sans); font-size: 13px; color: var(--ink-55); }
.od__check { display: inline-grid; place-items: center; width: 64px; height: 64px; margin-bottom: 18px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); }
.od__check svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rij-cta--twee { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
@media (max-width: 760px) {
  .od__body { padding: 76px 18px 40px; }
  .od__x { top: 10px; right: 10px; }
  .od__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .od__card { min-height: 140px; }
  .od__card--big { grid-column: span 2; grid-row: auto; min-height: 200px; }
  .od__grid--2, .od__grid--3 { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .od__opt { min-height: 0; padding: 20px 22px; font-size: 17px; }
  .od__tel { grid-template-columns: 112px 1fr; }
}

/* ===== Programma: Rabi-kaart bij Privégesprekken (clipje + naamplaatje als één kaart) ===== */
.browser__screen { --pipw: 24%; }
.browser__pip { position: absolute; right: 18px; bottom: 74px; width: var(--pipw); aspect-ratio: 9 / 13; object-fit: cover; object-position: 50% 30%; border-radius: 12px 12px 0 0; border: 1px solid rgba(233, 214, 180, .45); border-bottom: 0; box-shadow: 0 24px 50px -16px rgba(0, 0, 0, .85); opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); z-index: 3; }
.browser__pip.is-on { opacity: 1; transform: none; }
.browser__tag { position: absolute; right: 18px; bottom: 18px; z-index: 3; width: var(--pipw); box-sizing: border-box; display: grid; gap: 2px; margin: 0; padding: 10px 12px 11px; border: 1px solid rgba(233, 214, 180, .45); border-top: 1px solid rgba(233, 214, 180, .2); border-radius: 0 0 12px 12px; background: linear-gradient(180deg, rgba(21, 31, 25, .96), rgba(15, 22, 19, .98)); opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); text-align: center; }
.browser__tag.is-on { opacity: 1; transform: none; }
.browser__tag strong { font-family: var(--serif); font-weight: 400; font-size: clamp(13px, 1.15vw, 17px); line-height: 1.1; color: var(--gold-light); }
.browser__tag span { font-size: 9.5px; letter-spacing: .12em; white-space: nowrap; text-transform: uppercase; color: var(--sage); }
/* Hoofdclip loopt zachtjes donker uit onder de kaart, onderschrift blijft links */
.browser__screen::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(15, 22, 19, 0) 50%, rgba(15, 22, 19, .55) 100%), linear-gradient(180deg, rgba(15, 22, 19, 0) 70%, rgba(15, 22, 19, .6) 100%); opacity: 0; transition: opacity .7s var(--ease); }
.browser__screen:has(.browser__pip.is-on)::after { opacity: 1; }
.browser__caption { z-index: 3; right: auto; max-width: 60%; }
@media (max-width: 860px) { .browser__screen { --pipw: 30%; } .browser__pip { right: 12px; bottom: 62px; } .browser__tag { right: 12px; bottom: 12px; padding: 8px 8px 9px; } .browser__tag strong { font-size: 12px; } .browser__tag span { font-size: 8.5px; letter-spacing: .1em; } }
/* ===== AMRA: strakker ===== */
.showcase__head { justify-content: space-between; }
.showcase__head .eyebrow { margin-bottom: 10px; }
.project__h3--tight { margin: 0; }
.browser--clean { border-radius: 16px; border: 1px solid rgba(233, 214, 180, .22); box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .85); }
.browser--clean .browser__screen { aspect-ratio: 4 / 3; }
.project__text .eyebrow { margin-bottom: 14px; }
.project__text .project__h3 { max-width: 14ch; font-size: clamp(34px, 3.6vw, 54px); }
.link-ext--gold { font-size: 14px; letter-spacing: .04em; color: var(--gold); }
.link-ext--gold:hover { color: var(--gold-light); }
@media (max-width: 860px) { .showcase__head { flex-wrap: wrap; } }
/* Wiel loopt onderaan zacht weg in het donker, zodat de overgang naar het AMRA-beeld vloeiend is */
.wheel-wrap::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26%; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 0%, rgba(15, 22, 19, .7) 55%, var(--night) 100%); }

/* ===== Aanmelden: online alternatief in de derde merkkleur ===== */
:root { --derde: #9fcbb0; --derde-rgb: 159, 203, 176; }   /* placeholder tot de derde kleur uit de brandkit binnen is */
.online { margin-top: 18px; border: 1px solid rgba(var(--derde-rgb), .45); border-radius: 10px; background: linear-gradient(135deg, rgba(var(--derde-rgb), .14), rgba(var(--derde-rgb), .04)); overflow: hidden; }
.online__kop { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 18px 20px; list-style: none; cursor: pointer; }
.online__kop::-webkit-details-marker { display: none; }
.online__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(var(--derde-rgb), .2); color: var(--derde); }
.online__ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.online__tekst { display: grid; gap: 3px; }
.online__tekst b { font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.6vw, 23px); color: var(--derde); }
.online__tekst span { font-size: 14px; font-weight: 300; line-height: 1.5; color: var(--ink-70); }
.online__pijl { width: 10px; height: 10px; border-right: 1.5px solid var(--derde); border-bottom: 1.5px solid var(--derde); transform: rotate(45deg); transition: transform .3s var(--ease); margin-right: 4px; }
.online[open] .online__pijl { transform: rotate(225deg); }
.online__keuzes { padding: 0 16px 16px; }
.choice__card--online .choice__box { border-color: rgba(var(--derde-rgb), .3); background: rgba(15, 22, 19, .4); }
.choice__card--online:hover .choice__box { border-color: rgba(var(--derde-rgb), .6); }
.choice__card--online input:checked + .choice__box { border-color: var(--derde); background: rgba(var(--derde-rgb), .12); }
.choice__card--online .choice__date { color: var(--derde); }
.choice__card--online input:checked + .choice__box .choice__mark { border-color: var(--derde); }
.choice__card--online .choice__mark::after { background: var(--derde); }
@media (max-width: 600px) { .online__kop { padding: 16px; gap: 12px; } .online__ico { width: 36px; height: 36px; } }

/* ===== Tijdsloten privégesprek (dagschema, naar voorbeeld) ===== */
.slots__dagen { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.slots__dag { position: relative; cursor: pointer; }
.slots__dag input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.slots__dag span { display: grid; gap: 2px; min-width: 150px; padding: 12px 18px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 10px; text-align: center; transition: background-color .25s var(--ease), border-color .25s var(--ease); }
.slots__dag b { font-weight: 400; font-size: 16px; color: var(--gold-light); }
.slots__dag small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-55); }
.slots__dag input:checked + span { border-color: var(--gold); background: rgba(233, 214, 180, .12); }
.slots__dag input:checked + span small { color: var(--gold); }
.slots__dag input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }
.slots__tabel { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 10px; border: 1px solid var(--line); }
.slots__tabel th { padding: 12px 16px; background: #1f2d24; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; text-align: left; color: var(--gold-light); }
.slots__tabel td { padding: 12px 16px; border-top: 1px solid var(--line); font-size: 15px; color: var(--gold-light); vertical-align: middle; }
.slots__tabel td:first-child { white-space: nowrap; }
.slots__tabel tr.is-pauze td { background: rgba(247, 244, 238, .04); color: var(--ink-55); font-style: italic; }
.slots__knoppen { display: flex; flex-wrap: wrap; gap: 8px; }
.slots__slot { position: relative; cursor: pointer; }
.slots__slot input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.slots__slot span { display: grid; place-items: center; min-width: 74px; min-height: 42px; padding: 4px 12px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 999px; font-size: 14px; color: var(--gold); line-height: 1.1; transition: background-color .2s var(--ease), color .2s var(--ease); }
.slots__slot small { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; }
.slots__slot:hover span { border-color: var(--gold); }
.slots__slot input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--night); }
.slots__slot input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }
.slots__slot.is-bezet { cursor: not-allowed; }
.slots__slot.is-bezet span { opacity: .4; text-decoration: line-through; border-style: dashed; }
.slots__schema { margin-bottom: 4px; }
@media (max-width: 600px) {
  .slots__dag span { min-width: 0; padding: 10px 12px; } .slots__dagen { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slots__tabel th:nth-child(2), .slots__tabel td:nth-child(2) { display: none; }
  .slots__tabel td { padding: 10px; } .slots__slot span { min-width: 62px; }
}
@media (max-width: 600px) {
  .slots__dag span { padding: 10px 6px; } .slots__dag b { font-size: 15px; } .slots__dag small { font-size: 8.5px; letter-spacing: .08em; }
  .slots__tabel thead { display: none; }
  .slots__tabel, .slots__tabel tbody, .slots__tabel tr, .slots__tabel td { display: block; width: 100%; }
  .slots__tabel tr { padding: 12px 12px 14px; border-top: 1px solid var(--line); }
  .slots__tabel tr:first-child { border-top: 0; }
  .slots__tabel td { padding: 0; border: 0; }
  .slots__tabel td:first-child { display: inline; font-size: 13px; color: var(--gold); }
  .slots__tabel td:nth-child(2) { display: inline; margin-left: 6px; font-size: 12px; color: var(--ink-55); }
  .slots__tabel td:nth-child(3) { margin-top: 10px; }
  .slots__tabel tr.is-pauze td:nth-child(3) { display: none; }
  .slots__knoppen { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .slots__slot span { min-width: 0; width: 100%; }
}

/* ===== Intro bij laden (naar lesgmstudios.com): logo als uitsparing dat inzoomt ===== */
.intro-laag { display: none; }
html.intro.intro-klaar .intro-laag {
  --w0: 200px; --h0: 51px;                 /* logo 1400×356 */
  --fx: .4871; --fy: .4831;                /* vast punt midden in de P: daar zoomen we naartoe */
  display: block; position: fixed; inset: 0; z-index: 10000; pointer-events: none;
  background: var(--night);
  -webkit-mask-image: linear-gradient(#000 0 0), url("../assets/apex-wordmark.png");
          mask-image: linear-gradient(#000 0 0), url("../assets/apex-wordmark.png");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-composite: xor; mask-composite: exclude;
  -webkit-mask-size: 100% 100%, var(--w0) var(--h0); mask-size: 100% 100%, var(--w0) var(--h0);
  -webkit-mask-position: 0 0, calc(50vw - var(--w0) * .4871) calc(50vh - var(--h0) * .4831);
          mask-position: 0 0, calc(50vw - var(--w0) * .4871) calc(50vh - var(--h0) * .4831);
  animation: intro-zoom .8s cubic-bezier(.7, 0, .84, 0) .35s forwards, intro-weg .3s ease-out 1.05s forwards;
}
@keyframes intro-zoom {
  to {
    -webkit-mask-size: 100% 100%, calc(var(--w0) * 90) calc(var(--h0) * 90); mask-size: 100% 100%, calc(var(--w0) * 90) calc(var(--h0) * 90);
    -webkit-mask-position: 0 0, calc(50vw - var(--w0) * 90 * .4871) calc(50vh - var(--h0) * 90 * .4831);
            mask-position: 0 0, calc(50vw - var(--w0) * 90 * .4871) calc(50vh - var(--h0) * 90 * .4831);
  }
}
@keyframes intro-weg { to { opacity: 0; visibility: hidden; } }
/* Hero-animaties wachten tot het logo is ingezoomd; de navigatie schuift daarna van boven in */
html.intro-loopt .hero *, html.intro-loopt .hero { animation-play-state: paused !important; }
html.intro .nav { opacity: 0; }
html.intro.intro-klaar .nav { animation: intro-nav .8s var(--ease) 1s both; }
@keyframes intro-nav { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) { html.intro.intro-klaar .intro-laag { --w0: 170px; --h0: 43px; } }

/* Programma op telefoon: videovenster onder het geopende onderdeel */
.browser--inline { position: relative; top: auto; margin: 18px 0 4px; }
.browser--inline.reveal { opacity: 1; transform: none; }

@media (max-width: 860px) { .browser--inline .browser__caption { display: none; } }

/* Op telefoon geen "Meld je aan"-knop in de navigatie (op verzoek) */
@media (max-width: 860px) { .nav__cta { display: none !important; } }

/* ===== Telefoon: lichte versies van zware effecten (tegen haperen/flikkeren op echte toestellen) ===== */
@media (max-width: 860px), (hover: none) and (pointer: coarse) {
  .nav, .nav.is-scrolled { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  .nav.is-scrolled { background: rgba(15, 22, 19, .97); }
  .card { box-shadow: none; background: var(--forest); border: 1px solid rgba(247, 244, 238, .14); }
  .wheel { will-change: transform; }
  .wheel-wrap { contain: layout paint; }
  [data-parallax] img, .project__band img, .cta__media img { transform: none !important; will-change: auto; }
  .hero__title .w { filter: none !important; }
}

/* Hero-knoppen op telefoon/tablet: altijd passend (gelijke kolommen, tekst mag naar 2 regels, schaalt mee) */
@media (max-width: 860px) {
  .hero__corners { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero .corner { min-width: 0; min-height: 52px; }
  .hero .corner__icon { flex: 0 0 38px; width: 38px; height: auto; align-self: stretch; }
  .hero .corner__label { min-width: 0; padding: 8px 12px; font-size: clamp(10.5px, 3vw, 14px); font-stretch: 100%; line-height: 1.15; letter-spacing: .02em; white-space: normal; text-align: left; }
  @media (max-width: 350px) { .hero .corner__label { font-size: 10px; letter-spacing: 0; padding: 8px 9px; } .hero .corner__icon { flex-basis: 32px; width: 32px; } }
}

/* Rabi-kaart op telefoon: kleiner en compact, valt niet meer half over de video */
@media (max-width: 600px) {
  .browser__screen { --pipw: 27%; }
  .browser__pip { right: 10px; bottom: 50px; aspect-ratio: 4 / 5; border-radius: 9px 9px 0 0; }
  .browser__tag { right: 10px; bottom: 10px; padding: 6px 6px 7px; border-radius: 0 0 9px 9px; gap: 1px; }
  .browser__tag strong { font-size: 11.5px; }
  .browser__tag span { font-size: 7.5px; letter-spacing: .08em; }
}

/* ===== Online-blok in de derde merkkleur #7A2E18 (brandkit) ===== */
:root { --derde: #7A2E18; --derde-rgb: 122, 46, 24; --derde-licht: #c9744f; }
.online { border-color: rgba(var(--derde-rgb), .9); background: linear-gradient(135deg, #7A2E18 0%, #5f2312 100%); box-shadow: 0 18px 40px -22px rgba(var(--derde-rgb), .8); }
.online__ico { background: rgba(247, 244, 238, .14); color: var(--gold-light); }
.online__tekst b { color: var(--gold-light); }
.online__tekst span { color: rgba(247, 244, 238, .82); }
.online__pijl { border-color: var(--gold-light); }
.online__keuzes { background: transparent; }
.choice__card--online .choice__box { border-color: rgba(247, 244, 238, .22); background: rgba(15, 22, 19, .35); }
.choice__card--online:hover .choice__box { border-color: rgba(247, 244, 238, .5); }
.choice__card--online input:checked + .choice__box { border-color: var(--gold-light); background: rgba(15, 22, 19, .5); }
.choice__card--online .choice__date { color: #f0c9b4; }
.choice__card--online .choice__title { color: var(--gold-light); }
.choice__card--online .choice__sub { color: rgba(247, 244, 238, .78); }
.choice__card--online input:checked + .choice__box .choice__mark { border-color: var(--gold-light); }
.choice__card--online .choice__mark { border-color: rgba(247, 244, 238, .5); }
.choice__card--online .choice__mark::after { background: var(--gold-light); }

/* ===== AMRA v5: intro, luchtfoto die uitgroeit bij scrollen, draaiende ring ===== */
.project { padding-top: clamp(64px, 10vh, 120px); }
.onthul__kop { max-width: 820px; text-align: center; margin: 0 auto clamp(28px, 5vh, 56px); }
.onthul__kop .eyebrow { justify-content: center; }
.onthul__titel { margin: 12px 0 16px; font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 5.2vw, 80px); line-height: 1.02; color: var(--gold-light); }
.onthul__kop .lead { margin-inline: auto; max-width: 52ch; }
.onthul { --p: 0; position: relative; height: 175vh; }
.onthul__plak { position: sticky; top: 0; height: 100vh; height: 100svh; display: grid; place-items: center; overflow: hidden; }
.onthul__foto { position: relative; margin: 0; width: 100%; height: 100%; overflow: hidden;
  clip-path: inset(calc((1 - var(--p)) * 18%) calc((1 - var(--p)) * 16%) round calc((1 - var(--p)) * 28px)); will-change: clip-path; }
.onthul__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; transform: scale(calc(1.18 - var(--p) * .18)); will-change: transform; }
.onthul__schaduw { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 22, 19, .0) 55%, rgba(15, 22, 19, .7) 100%); opacity: var(--p); }
.onthul__onder { position: absolute; left: 0; right: 0; bottom: clamp(24px, 5vh, 56px); display: grid; justify-items: center; gap: 6px; text-align: center; opacity: calc(var(--p) * 1.6 - .6); }
.onthul__onder span:first-child { font-family: var(--serif); font-size: clamp(34px, 5vw, 72px); color: var(--gold-light); letter-spacing: .06em; }
.onthul__onder span:last-child { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ring { position: absolute; width: clamp(130px, 15vw, 210px); right: calc(16% - clamp(65px, 7.5vw, 105px) + var(--p) * 6%); top: calc(18% - clamp(65px, 7.5vw, 105px) + var(--p) * 8%);
  fill: var(--gold-light); animation: ring-draai 18s linear infinite; pointer-events: none; }
.ring text { font-family: var(--sans); font-size: 12.5px; letter-spacing: 3.1px; font-weight: 500; }
.ring circle { fill: var(--gold); }
@keyframes ring-draai { to { transform: rotate(360deg); } }
.kenmerken { overflow: hidden; border-block: 1px solid var(--line); background: var(--night); }
.kenmerken__spoor { display: flex; width: max-content; animation: kenmerken-loop 40s linear infinite; }
@keyframes kenmerken-loop { to { transform: translateX(-50%); } }
.kenmerken__spoor span { display: inline-flex; align-items: center; gap: 22px; padding: 22px 22px; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(14px, 1.3vw, 18px); letter-spacing: .04em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }
.kenmerken__spoor span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--derde, #7A2E18); box-shadow: 0 0 0 3px rgba(233, 214, 180, .15); margin-left: 22px; }
@media (prefers-reduced-motion: reduce) { .onthul { height: auto; } .onthul__plak { position: relative; height: 70vh; } .onthul__foto { clip-path: none; } .onthul__foto img { transform: none; } .ring, .kenmerken__spoor { animation: none; } }

/* ===== Over het project: tabs + interieurvideo ===== */
.over { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: center; padding-top: clamp(64px, 10vh, 120px); }
.tabs-amra { display: inline-flex; gap: 4px; margin: 6px 0 22px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(15, 22, 19, .5); }
.tabs-amra button { padding: 10px 18px; border: 0; border-radius: 999px; background: none; font: inherit; font-size: 14px; color: var(--ink-70); cursor: pointer; transition: background-color .25s var(--ease), color .25s var(--ease); }
.tabs-amra button:hover { color: var(--gold-light); }
.tabs-amra button.is-on { background: var(--gold); color: var(--night); }
.tabpaneel p { max-width: 54ch; margin: 0 0 14px; font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-70); }
.tabpaneel.is-on { animation: faq-in .45s var(--ease) both; }
.vinkjes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin: 18px 0 20px; padding: 0; list-style: none; }
.vinkjes li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.45; color: var(--gold-light); }
.vinkjes li::before { content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: rgba(233, 214, 180, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9d6b4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat; }
.voorz { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.voorz span { padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.voorz b { font-weight: 600; color: var(--gold-light); }
.over .rij-cta { margin-top: 10px; }
.interieur { position: relative; margin: 0; overflow: hidden; border-radius: 18px; border: 1px solid rgba(233, 214, 180, .22); box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .85); aspect-ratio: 16 / 10; background: var(--forest); }
.interieur__video { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.interieur__onder { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 2px; padding: 40px 22px 18px; background: linear-gradient(180deg, rgba(15, 22, 19, 0), rgba(15, 22, 19, .8)); }
.interieur__onder b { font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--gold-light); }
.interieur__onder span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.interieur__geluid { position: absolute; top: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 999px; background: rgba(15, 22, 19, .65); backdrop-filter: blur(6px); font: inherit; font-size: 12px; color: var(--gold-light); cursor: pointer; }
.interieur__geluid svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.interieur__geluid .aan { display: none; } .interieur__geluid[aria-pressed="true"] .aan { display: inline; } .interieur__geluid[aria-pressed="true"] .uit { display: none; }
@media (max-width: 860px) {
  .onthul { height: 150vh; }
  .onthul__foto { clip-path: inset(calc((1 - var(--p)) * 14%) calc((1 - var(--p)) * 6%) round calc((1 - var(--p)) * 18px)); }
  .ring { width: 110px; right: calc(6% - 40px + var(--p) * 8%); top: calc(14% - 50px + var(--p) * 6%); }
  .over { grid-template-columns: minmax(0, 1fr); }
  .interieur { order: -1; }
  .vinkjes { grid-template-columns: minmax(0, 1fr); }
  .tabs-amra button { padding: 9px 13px; font-size: 13px; }
  .interieur__geluid { backdrop-filter: none; }
}

@media (max-width: 860px) { .ring { width: 104px; right: calc(9% + var(--p) * 2%); top: calc(17% + var(--p) * 2%); } }

/* staande luchtfoto: torens en strand in beeld houden */
.onthul__foto img { object-position: 50% 40%; }
@media (max-width: 860px) { .onthul__foto img { object-position: 50% 45%; } }

/* ===== Alle koppen in de display-letter (Archivo 900, breed, hoofdletters) zoals "Vier dagen om AMRA…" ===== */
.h2, .project__h3, .onthul__titel, .cta__title, .form__legend, .form__done-title, .legal h1, .legal h2, .legal--404 .code,
.onthul__onder span:first-child, .online__tekst b, .interieur__onder b, .vsl__label, .od__video-t {
  font-family: var(--display); font-weight: 900; font-stretch: 125%; font-style: normal;
  text-transform: uppercase; letter-spacing: -.01em; line-height: .96; color: var(--white);
}
.h2 { font-size: clamp(34px, 5vw, 76px); max-width: 16ch; }
.h2--sm { font-size: clamp(28px, 3.6vw, 52px); }
.onthul__titel { font-size: clamp(36px, 6vw, 92px); }
.project__h3, .project__text .project__h3 { font-size: clamp(28px, 3.6vw, 54px); max-width: 16ch; }
.cta__title { font-size: clamp(34px, 5.4vw, 84px); text-shadow: 0 2px 30px rgba(15, 22, 19, .6); }
.form__legend { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.02; }
.form__done-title { font-size: clamp(26px, 3vw, 40px); }
.legal h1 { font-size: clamp(30px, 4.4vw, 60px); }
.legal h2 { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.1; color: var(--gold-light); }
.onthul__onder span:first-child { font-size: clamp(40px, 7vw, 110px); letter-spacing: .01em; }
.online__tekst b { font-size: clamp(16px, 1.5vw, 21px); line-height: 1.05; color: var(--gold-light); }
.interieur__onder b { font-size: clamp(16px, 1.5vw, 20px); color: var(--gold-light); }
.vsl__label, .od__video-t { font-size: clamp(16px, 1.6vw, 22px); color: var(--gold-light); }
@media (max-width: 600px) {
  .h2, .onthul__titel, .cta__title { font-size: clamp(28px, 9vw, 40px); font-stretch: 110%; }
  .project__h3, .project__text .project__h3 { font-size: clamp(24px, 7.6vw, 34px); font-stretch: 110%; }
  .form__legend { font-size: 21px; font-stretch: 110%; }
}

.signup .h2, .faq .h2 { max-width: 22ch; margin-inline: auto; }

/* ===== AMRA intro met draaiende wereldbol ===== */
.bol { --s: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: center; min-height: 90vh; padding-block: clamp(24px, 6vh, 80px); }
.bol__titel { margin: 14px 0 20px; font-family: var(--display); font-weight: 900; font-stretch: 125%; text-transform: uppercase; font-size: clamp(38px, 5.4vw, 88px); line-height: .92; letter-spacing: -.015em; color: var(--white); }
.bol__titel span { display: block; color: var(--gold); }
.bol__tekst .lead { max-width: 44ch; margin-bottom: 24px; }
.bol__beeld { position: relative; aspect-ratio: 1; width: min(100%, 620px); justify-self: center; perspective: 1200px; }
.bol__img { position: relative; z-index: 2; display: block; width: 100%; height: auto;
  transform: translateY(calc(var(--s) * -30px)) rotate(calc(var(--s) * 18deg - 9deg)) scale(calc(.86 + var(--s) * .14));
  animation: bol-zweef 7s ease-in-out infinite; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .55)); will-change: transform; }
@keyframes bol-zweef { 0%, 100% { translate: 0 0; rotate: -3deg; } 50% { translate: 0 -14px; rotate: 3deg; } }
.bol__gloed { position: absolute; inset: 8%; z-index: 0; border-radius: 50%; background: radial-gradient(circle, rgba(64, 196, 214, .35) 0%, rgba(233, 214, 180, .12) 45%, transparent 70%); filter: blur(30px); animation: bol-gloed 6s ease-in-out infinite; }
@keyframes bol-gloed { 50% { transform: scale(1.08); opacity: .75; } }
.bol__ring { position: absolute; inset: -6%; z-index: 1; width: 112%; height: 112%; fill: var(--gold-light); opacity: .85; animation: ring-draai 30s linear infinite; }
.bol__ring text { font-family: var(--sans); font-size: 8.4px; letter-spacing: 2.6px; font-weight: 500; }
.bol__schaduw { position: absolute; left: 20%; right: 20%; bottom: -4%; height: 8%; z-index: 0; border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 70%); animation: bol-schaduw 7s ease-in-out infinite; }
@keyframes bol-schaduw { 50% { transform: scaleX(.88); opacity: .7; } }
@media (max-width: 860px) {
  .bol { grid-template-columns: minmax(0, 1fr); min-height: 0; text-align: center; }
  .bol__tekst .eyebrow { justify-content: center; } .bol__tekst .lead { margin-inline: auto; }
  .bol__titel { font-size: clamp(32px, 10vw, 46px); font-stretch: 110%; }
  .bol__beeld { width: min(86vw, 420px); order: 2; }
}
@media (prefers-reduced-motion: reduce) { .bol__img, .bol__gloed, .bol__ring, .bol__schaduw { animation: none; } }

.project { overflow-x: clip; }
@media (max-width: 860px) { .bol__ring { inset: -3%; width: 106%; height: 106%; } .bol__beeld { width: min(78vw, 400px); } }

/* Knoppen in secties op telefoon: volle breedte, tekst gecentreerd, links eronder netjes gecentreerd */
@media (max-width: 860px) {
  .rij-cta, .rij-cta--twee { flex-direction: column; align-items: stretch; gap: 14px; }
  .corner--static { width: 100%; min-height: 56px; }
  .corner--static .corner__label { flex: 1; text-align: center; padding: 0 16px; font-size: clamp(12px, 3.6vw, 15px); font-stretch: 110%; }
  .corner--static .corner__icon { flex: 0 0 52px; width: 52px; height: auto; align-self: stretch; }
  .rij-cta .link-ext { justify-content: center; }
}

/* ===== Houstiq-sierletter overal weg (op verzoek): alles in de productletter ===== */
:root { --serif: "SF Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; }
.faq__q { font-weight: 500; font-size: clamp(17px, 1.35vw, 20px); letter-spacing: -.005em; }
.choice__title, .browser__tag strong, .ck__title, .tl__title { font-weight: 600; letter-spacing: -.01em; }
.choice__title { font-size: 19px; }
.choice__card--primary .choice__title { font-size: 21px; }
.browser__tag strong { font-size: clamp(12px, 1.05vw, 15px); }
.speakers__signed { font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }

/* Tab "Het project": beeldraster met alle voorzieningen */
.pgal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 4px 0 22px; }
.pgal__item { position: relative; margin: 0; overflow: hidden; border-radius: 10px; aspect-ratio: 1; background: var(--forest); }
.pgal__item--groot { grid-column: span 2; grid-row: span 2; }
.pgal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pgal__item:hover img { transform: scale(1.06); }
.pgal__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 1px; padding: 22px 10px 8px; background: linear-gradient(180deg, transparent, rgba(15, 22, 19, .85)); font-size: 12.5px; font-weight: 600; color: var(--gold-light); }
.pgal__item figcaption span { font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.pgal__item--groot figcaption { font-size: 15px; padding: 30px 14px 12px; }
.tabs-amra { flex-wrap: wrap; }
@media (max-width: 600px) { .tabs-amra button { padding: 8px 11px; font-size: 12.5px; } .pgal { gap: 6px; } }

.pgal__item:last-child { grid-column: 1 / -1; aspect-ratio: 3 / 1; }
.pgal__item:last-child img { object-position: 50% 60%; }

.over__rechts { min-width: 0; }
.pgal--rechts { margin: 0; animation: faq-in .45s var(--ease) both; }
.interieur[hidden], .pslider[hidden] { display: none; }
.pslider { min-width: 0; animation: faq-in .45s var(--ease) both; }
.pslider__groot img { object-position: 50% 45%; }
/* Mobiel: kop, tabs en tekst eerst, dan de video/galerij, dan de knoppen (tekstkolom wordt "doorzichtig" zodat de video ertussen kan) */
@media (max-width: 860px) {
  .over { gap: 22px; }
  .over__tekst { display: contents; }
  .over__tekst > * { order: 1; }
  .over__tekst > .tabs-amra { margin-bottom: 4px; }
  .over__rechts { order: 2; }
  .over__tekst > .rij-cta { order: 3; margin-top: 0; }
}

/* ===== Grote galerij AMRA ===== */
.ggal-wrap { padding-top: clamp(64px, 10vh, 120px); }
.ggal__kop { margin-bottom: 22px; }
.ggal { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(150px, 16vw, 250px); gap: 12px; }
.ggal__item { position: relative; padding: 0; border: 0; overflow: hidden; border-radius: 14px; background: var(--forest); cursor: zoom-in; }
.ggal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s var(--ease); }
.ggal__item:hover img { transform: scale(1.06); }
.ggal__cap { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 2px; padding: 34px 16px 14px; text-align: left; background: linear-gradient(180deg, transparent, rgba(15, 22, 19, .85)); font-size: 15px; font-weight: 600; color: var(--gold-light); opacity: .95; }
.ggal__cap small { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.g-a { grid-column: span 2; grid-row: span 2; } .g-b { grid-column: span 2; } .g-e { grid-row: span 2; } .g-h { grid-column: span 2; } .g-j { grid-column: span 2; }
.lb { position: fixed; inset: 0; z-index: 96; display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; background: rgba(10, 14, 12, .94); backdrop-filter: blur(8px); }
.lb[hidden] { display: none; }
.lb__fig { margin: 0; display: grid; justify-items: center; gap: 12px; max-height: 92vh; }
.lb__fig img { max-width: 100%; max-height: 82vh; border-radius: 12px; object-fit: contain; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9); }
.lb__fig figcaption { font-size: 14px; letter-spacing: .08em; color: var(--gold-light); }
.lb__x { position: absolute; top: 14px; right: 18px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(233, 214, 180, .12); color: var(--gold-light); font-size: 28px; cursor: pointer; }
.lb__pijl { width: 48px; height: 48px; margin: auto; border: 1px solid rgba(233, 214, 180, .3); border-radius: 50%; background: rgba(15, 22, 19, .6); color: var(--gold-light); cursor: pointer; }
.lb__pijl svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 860px) {
  .ggal { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; gap: 8px; }
  .g-a, .g-h, .g-j { grid-column: span 2; } .g-a { grid-row: span 1; } .g-b { grid-column: span 1; } .g-e { grid-row: span 1; }
  .ggal__cap { font-size: 13px; padding: 26px 10px 10px; }
  .lb { grid-template-columns: 44px 1fr 44px; backdrop-filter: none; } .lb__pijl { width: 38px; height: 38px; }
}

@media (min-width: 861px) { .ggal { grid-auto-flow: dense; } .g-j { grid-column: span 1; } }

/* ===== Over het project v2 (opbouw amra-uae.com) ===== */
.over2 { padding-top: clamp(64px, 10vh, 120px); }
.over2__kop { text-align: center; margin-bottom: clamp(28px, 4vh, 44px); }
.over2__kop .project__h3 { max-width: none; margin: 10px auto 22px; }
.tabs2 { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tabs2 button { padding: 12px 28px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; font: inherit; font-size: 15px; color: var(--gold-light); cursor: pointer; transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.tabs2 button:hover { border-color: var(--gold); }
.tabs2 button.is-on { background: var(--gold); border-color: var(--gold); color: var(--night); box-shadow: 0 10px 30px -12px rgba(233, 214, 180, .5); }
.over2__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.over2__tekst .tabpaneel p { font-size: 16px; line-height: 1.75; color: rgba(247, 244, 238, .78); }
.over2__tekst .vinkjes { grid-template-columns: minmax(0, 1fr); gap: 14px; margin: 22px 0 26px; }
.over2__tekst .vinkjes li { padding-left: 32px; font-size: 15.5px; color: var(--gold-light); }
.over2__tekst .vinkjes li::before { width: 20px; height: 20px; top: 0; background-color: transparent; border: 1.5px solid var(--gold-light); background-size: 11px; }
.pslider__groot { display: block; width: 100%; padding: 0; border: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--forest); cursor: zoom-in; }
.pslider__groot img { width: 100%; height: 100%; object-fit: cover; animation: faq-in .45s var(--ease) both; }
.pslider__balk { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 16px 0 18px; }
.pslider__dots { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.pslider__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(247, 244, 238, .3); cursor: pointer; transition: width .3s var(--ease), background-color .3s var(--ease); }
.pslider__dot.is-on { width: 26px; background: var(--gold-light); }
.pslider__pijlen { display: flex; gap: 10px; flex: 0 0 auto; }
.pslider__pijlen button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--gold-light); cursor: pointer; }
.pslider__pijlen button:hover { border-color: var(--gold); background: rgba(233, 214, 180, .08); }
.pslider__pijlen svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pslider__thumbs { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; }
.pslider__thumb { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 10; background: var(--forest); cursor: pointer; opacity: .6; transition: opacity .25s var(--ease), border-color .25s var(--ease); }
.pslider__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pslider__thumb:hover { opacity: .9; }
.pslider__thumb.is-on { opacity: 1; border-color: var(--gold-light); }
.interieur2 { margin-top: clamp(56px, 9vh, 110px); text-align: center; }
.interieur2 .project__h3 { max-width: none; margin: 0 auto 26px; }
.interieur2 .interieur { max-width: 1040px; margin: 0 auto; aspect-ratio: 16 / 9; }
@media (max-width: 860px) {
  .over2__grid { grid-template-columns: minmax(0, 1fr); }
  .pslider { order: -1; }
  .tabs2 { gap: 8px; } .tabs2 button { padding: 10px 16px; font-size: 13.5px; }
  .pslider__thumbs { display: flex; overflow-x: auto; gap: 8px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .pslider__thumbs::-webkit-scrollbar { display: none; }
  .pslider__thumb { flex: 0 0 72px; scroll-snap-align: center; }
  .pslider__dots { gap: 5px; } .pslider__dot { width: 6px; height: 6px; } .pslider__dot.is-on { width: 18px; }
  .pslider__pijlen button { width: 40px; height: 40px; }
  .over2__kop .eyebrow { justify-content: center; }
}

/* ===== Sectie Locatie ===== */
.loc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: center; padding-block: clamp(56px, 10vh, 120px); }
.loc__titel { margin: 14px 0 20px; font-family: var(--display); font-weight: 900; font-stretch: 125%; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 56px); line-height: .95; letter-spacing: -.01em; color: var(--white); }
.loc__titel span { color: var(--gold); }
.loc__tekst > p { max-width: 52ch; margin: 0 0 14px; font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(247, 244, 238, .78); }
.loc__punten { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 26px 0 26px; }
.loc__punten div { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(247, 244, 238, .03); }
.loc__punten svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.loc__punten b { font-size: 14px; font-weight: 500; line-height: 1.35; color: var(--gold-light); }
.loc__kaart { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 4 / 3.4; border: 1px solid rgba(233, 214, 180, .2); box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .85); }
.loc__kaart img { width: 100%; height: 100%; object-fit: cover; }
.loc__kaart::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 22, 19, 0) 45%, rgba(15, 22, 19, .88) 100%); }
.loc__pin { position: absolute; left: 50%; top: 38%; z-index: 2; display: grid; justify-items: center; gap: 8px; transform: translate(-50%, -50%); }
.loc__pin i { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(233, 214, 180, .7); animation: pin-puls 2.2s ease-out infinite; }
.loc__pin b { padding: 5px 12px; border-radius: 999px; background: rgba(15, 22, 19, .8); font-size: 12px; letter-spacing: .16em; color: var(--gold-light); }
@keyframes pin-puls { to { box-shadow: 0 0 0 22px rgba(233, 214, 180, 0); } }
.loc__route { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; display: flex; align-items: center; gap: 10px; }
.loc__route span { display: grid; gap: 2px; flex: 0 0 auto; padding: 8px 12px; border: 1px solid rgba(233, 214, 180, .3); border-radius: 10px; background: rgba(15, 22, 19, .75); font-size: 12.5px; font-weight: 500; color: var(--gold-light); }
.loc__route span small { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.loc__route span.is-amra { background: var(--gold); border-color: var(--gold); color: var(--night); font-weight: 700; letter-spacing: .12em; }
.loc__route i { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--gold-light) 0 6px, transparent 6px 12px); opacity: .7; }
@media (max-width: 860px) {
  .loc { grid-template-columns: minmax(0, 1fr); }
  .loc__kaart { order: -1; aspect-ratio: 4 / 3.6; }
  .loc__titel { font-size: clamp(26px, 8vw, 36px); font-stretch: 110%; }
  .loc__punten { grid-template-columns: minmax(0, 1fr); }
  .loc__route { left: 12px; right: 12px; bottom: 12px; gap: 6px; } .loc__route span { padding: 6px 8px; font-size: 11px; } .loc__route span small { font-size: 8.5px; }
}

/* ===== Locatie: bewegende kaart (v4: pendelende auto en boot, premium afwerking) ===== */
.loc { grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr); }
.loc__tijden { display: none; }
.kaart { position: relative; width: 100%; aspect-ratio: 1 / 1; isolation: isolate; }
.kaart__gloed { position: absolute; left: 50%; top: 56%; width: 100%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(64, 196, 214, .14) 0%, rgba(233, 214, 180, .05) 42%, transparent 66%); z-index: 0; }
.kaart__hart { position: absolute; left: 50%; top: 70%; width: 46%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(64, 196, 214, .42) 0%, rgba(64, 196, 214, .1) 45%, transparent 70%); animation: hart-gloed 1.6s ease-in-out infinite; will-change: transform, opacity; }
@keyframes hart-gloed { 0%, 60%, 100% { transform: translate(-50%, -50%) scale(.9); opacity: .35; } 14% { transform: translate(-50%, -50%) scale(1.12); opacity: .8; } 28% { transform: translate(-50%, -50%) scale(.95); opacity: .4; } 42% { transform: translate(-50%, -50%) scale(1.16); opacity: .85; } }
/* uitdijende gouden ring: elke hartslag een zachte "ping" */
.kaart__ring { position: absolute; left: 50%; top: 70%; width: 40%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(233, 214, 180, .55); transform: translate(-50%, -50%) scale(1); opacity: 0; z-index: 0; animation: hart-ring 1.6s ease-out infinite; will-change: transform, opacity; }
@keyframes hart-ring { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0; } 14% { opacity: .5; } 100% { transform: translate(-50%, -50%) scale(1.45); opacity: 0; } }
.kaart__routes { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; fill: none; stroke: rgba(233, 214, 180, .45); stroke-width: .28; stroke-linecap: round; stroke-dasharray: 1 1.6; animation: route-loop 3s linear infinite; filter: drop-shadow(0 0 .6px rgba(233, 214, 180, .5)); }
@keyframes route-loop { to { stroke-dashoffset: -2.6; } }
.kbol { position: absolute; z-index: 2; will-change: transform; animation: bol-drijf 8s ease-in-out infinite; }
.kbol img { display: block; width: 100%; height: auto; }
.kbol::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: -7%; height: 13%; border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 0, 0, .6), transparent 70%); z-index: -1; }
.kbol--dubai { left: 0; top: 24%; width: 24%; animation-delay: -1s; }
.kbol--uaq { left: 39%; top: 0; width: 22%; animation-delay: -3s; }
.kbol--wynn { right: 0; top: 24%; width: 24%; animation-delay: -5s; }
.kbol--amra { left: 29%; top: 49%; width: 42%; z-index: 3; animation: hart-klop 1.6s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes hart-klop { 0%, 60%, 100% { transform: scale(1); } 14% { transform: scale(1.045); } 28% { transform: scale(1.01); } 42% { transform: scale(1.06); } }
@keyframes bol-drijf { 50% { transform: translateY(-2.5%); } }
.rijdt { position: absolute; z-index: 4; height: auto; will-change: transform; backface-visibility: hidden; }
.rijdt img { display: block; width: 100%; height: auto; will-change: transform; }
/* zachte slagschaduw onder auto en boot (goedkoop: vaste gradient die meebeweegt) */
.rijdt--auto::after, .rijdt--jacht::after { content: ""; position: absolute; left: 6%; right: 6%; bottom: -10%; height: 22%; border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 0, 0, .55), transparent 70%); z-index: -1; }
/* auto en jacht: rijden/varen heen, draaien om hun as (perspectief) en komen terug; op het edge-on moment wisselt de afbeelding naar de gespiegelde variant met leesbare tekst */
.kaart { perspective: 1200px; }
.rijdt--auto, .rijdt--jacht { transform-style: preserve-3d; transform-origin: 50% 50%; }
.rijdt--auto img, .rijdt--jacht img { position: relative; }
.rijdt--auto .terug, .rijdt--jacht .terug { position: absolute; inset: 0; }
.rijdt--auto { left: 9%; top: 43%; width: 12.5%; animation: auto-rit 14s ease-in-out infinite; }
.rijdt--auto img { transform-origin: 50% 70%; animation: auto-veert 1.1s ease-in-out infinite, zicht-heen 14s linear infinite; }
.rijdt--auto .terug { animation-name: auto-veert, zicht-terug; }
@keyframes auto-rit {
  0% { transform: translate(0, 0) rotateY(-90deg); }
  5% { transform: translate(0, 0) rotateY(0); }
  45% { transform: translate(112%, 205%) rotateY(0); }
  50% { transform: translate(112%, 205%) rotateY(90deg); }
  50.01% { transform: translate(112%, 205%) rotateY(-90deg); }
  55% { transform: translate(112%, 205%) rotateY(0); }
  95% { transform: translate(0, 0) rotateY(0); }
  100% { transform: translate(0, 0) rotateY(90deg); }
}
@keyframes auto-veert { 0%, 100% { transform: rotate(16deg) translateY(0); } 50% { transform: rotate(16deg) translateY(-2.5%); } }
.rijdt--jacht { left: 64%; top: 56.5%; width: 13.5%; animation: jacht-rit 17s ease-in-out infinite; }
.rijdt--jacht img { animation: jacht-deint 3.2s ease-in-out infinite, zicht-heen 17s linear infinite; }
.rijdt--jacht .terug { animation-name: jacht-deint, zicht-terug; }
@keyframes jacht-rit {
  0% { transform: translate(0, 0) rotateY(-90deg); }
  5% { transform: translate(0, 0) rotateY(0); }
  45% { transform: translate(89%, -159%) rotateY(0); }
  50% { transform: translate(89%, -159%) rotateY(90deg); }
  50.01% { transform: translate(89%, -159%) rotateY(-90deg); }
  55% { transform: translate(89%, -159%) rotateY(0); }
  95% { transform: translate(0, 0) rotateY(0); }
  100% { transform: translate(0, 0) rotateY(90deg); }
}
@keyframes jacht-deint { 0%, 100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(-5%) rotate(-4.6deg); } }
@keyframes zicht-heen { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@keyframes zicht-terug { 0%, 50% { opacity: 0; } 50.01%, 100% { opacity: 1; } }
/* drone: zweeft op en neer tussen Downtown UAQ en AMRA */
.rijdt--drone { left: 44.5%; top: 27%; width: 11%; z-index: 4; animation: drone-zweeft 5.5s ease-in-out infinite; }
@keyframes drone-zweeft { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(130%) rotate(1.5deg); } }
/* tijdpillen: gouden rand, glas, gecentreerd op vaste punten */
.tijd { position: absolute; z-index: 5; display: inline-flex; align-items: baseline; gap: 4px; padding: 7px 14px 7px 12px; border-radius: 999px; background: linear-gradient(rgba(15, 22, 19, .92), rgba(15, 22, 19, .92)) padding-box, linear-gradient(135deg, rgba(233, 214, 180, .85), rgba(233, 214, 180, .25) 55%, rgba(233, 214, 180, .7)) border-box; border: 1px solid transparent; box-shadow: 0 8px 24px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-size: 11px; letter-spacing: .06em; color: var(--gold-light); transform: translate(-50%, -50%); white-space: nowrap; }
.tijd b { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: 18px; line-height: 1; letter-spacing: -.01em; color: var(--gold); }
.tijd small { margin-left: 5px; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.tijd--auto { left: 14%; top: 70%; }
.tijd--drone { left: 63.5%; top: 36%; }
.tijd--jacht { left: 86%; top: 70%; }
@media (max-width: 860px) {
  .loc { grid-template-columns: minmax(0, 1fr); }
  .kaart { max-width: 560px; margin: 8px auto 0; }
  .tijd { padding: 5px 10px 5px 9px; font-size: 10px; } .tijd b { font-size: 15px; } .tijd small { display: none; }
}
@media (prefers-reduced-motion: reduce) { .kbol, .rijdt, .rijdt img, .kaart__routes, .kaart__hart, .kaart__ring { animation: none; } .rijdt--auto { transform: translate(56%, 102%); } .rijdt--jacht { transform: translate(45%, -80%); } .rijdt .terug { opacity: 0; } .rijdt--drone { transform: translateY(60%); } }

/* ===== Aanmelden op laptop/desktop: twee kolommen, links blijft plakken ===== */
.signup__feiten { display: none; }
@media (min-width: 1024px) {
  .signup__inner { max-width: var(--container, 1240px); }
  .signup__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(40px, 5vw, 88px); align-items: start; }
  .signup__links { position: sticky; top: 92px; }
  .signup .section-head--center { text-align: left; margin-bottom: 28px; }
  .signup .eyebrow--center { justify-content: flex-start; }
  .signup .h2 { margin-inline: 0; max-width: 14ch; font-size: clamp(34px, 3.3vw, 54px); }
  .signup .vsl { margin-bottom: 18px; aspect-ratio: 16 / 10; }
  /* feiten: één kaart, drie vakken met gouden scheidingslijnen en een icoon in een ring */
  .signup__feiten { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border: 1px solid rgba(233, 214, 180, .28); border-radius: 14px; background: linear-gradient(180deg, rgba(42, 58, 49, .5) 0%, rgba(21, 31, 25, .92) 100%); box-shadow: 0 30px 60px -40px rgba(0, 0, 0, .85), inset 0 1px 0 rgba(233, 214, 180, .12); overflow: hidden; }
  .signup__feiten::before { content: ""; position: absolute; left: 10%; right: 10%; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(233, 214, 180, .7), transparent); }
  .signup__feiten li { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); row-gap: 3px; align-content: start; padding: 18px 16px 18px 18px; min-width: 0; }
  .signup__feiten li + li::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px; background: linear-gradient(180deg, transparent, rgba(233, 214, 180, .4), transparent); }
  .feit__ico { margin-bottom: 8px; width: 34px; height: 34px; padding: 8px; box-sizing: border-box; border: 1px solid rgba(233, 214, 180, .38); border-radius: 50%; background: rgba(233, 214, 180, .06); color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .signup__feiten small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
  .signup__feiten b { font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(15px, 1.25vw, 19px); line-height: 1; letter-spacing: -.01em; color: var(--gold-light); white-space: nowrap; }
  .signup__feiten span { font-size: 12.5px; line-height: 1.3; color: var(--ink-70); }
  .signup__rechts { min-width: 0; }
  .signup .form { padding: clamp(28px, 2.8vw, 40px); }
}
@media (min-width: 1024px) and (max-width: 1180px) { .signup__grid { gap: 36px; } .signup__feiten li { padding: 14px 12px 14px 14px; } .feit__ico { width: 30px; height: 30px; padding: 7px; } .signup__feiten b { font-size: 14.5px; } .signup__feiten small { font-size: 9px; letter-spacing: .14em; } .signup__feiten span { font-size: 11.5px; } }

/* Tapdoelen op aanraakschermen: minimaal 44px hoog zonder de layout te verschuiven */
@media (max-width: 700px) {
  .link-ext, .footer__col a, .footer__ext, .footer__col li > a { padding-block: 13px; margin-block: -13px; }
  .nav__logo { padding-block: 11px; margin-block: -11px; }
  .pslider__dot { padding: 8px 0; box-sizing: content-box; background-clip: content-box; }
}

/* ===== Sprekerskaart (klik op het wiel): grote kaart die omdraait ===== */
.wheel .card[data-sid] { cursor: pointer; }
.wheel .card[data-sid]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.sk { position: fixed; inset: 0; z-index: 97; display: grid; place-items: center; padding: 24px; background: rgba(10, 14, 12, .9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; transition: opacity .35s var(--ease); }
.sk[hidden] { display: none; }
.sk.is-open { opacity: 1; }
.sk__scene { --cw: 340; --ch: 547; perspective: 1600px; width: calc(var(--cw) * 1px); height: calc(var(--ch) * 1px); }
.sk__kaart { position: relative; left: auto; top: auto; overflow: visible; backface-visibility: visible; -webkit-backface-visibility: visible; transform-origin: 50% 50%; transform: rotateY(0) scale(.6) translateY(40px); transform-style: preserve-3d; transition: transform .9s cubic-bezier(.2, .8, .2, 1); cursor: pointer; }
.sk.is-open .sk__kaart { transform: rotateY(0) scale(1) translateY(0); }
.sk.is-open .sk__kaart.is-om { transform: rotateY(180deg) scale(1) translateY(0); }
.sk__hint { display: none; }
.sk__voor, .sk__achter { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.sk__voor { background: var(--forest); }
.sk__kaart.is-om .sk__voor { pointer-events: none; }
.sk__kaart:not(.is-om) .sk__achter { pointer-events: none; }
.sk__achter { transform: rotateY(180deg); display: grid; align-content: end; gap: 10px; padding: 28px 26px; background: linear-gradient(180deg, rgba(42, 58, 49, .9) 0%, rgba(15, 22, 19, .98) 100%); border: 1px solid rgba(233, 214, 180, .28); }
.sk__achter::before { content: ""; position: absolute; left: 12%; right: 12%; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(233, 214, 180, .7), transparent); }
.sk__eyebrow { margin: 0; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.sk__naam { margin: 0; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: 26px; line-height: .98; letter-spacing: -.01em; color: var(--gold-light); text-wrap: balance; }
.sk__rol { margin: 0; font-size: 13px; letter-spacing: .06em; color: var(--gold); }
.sk__rol:empty { display: none; }
.sk__tekst { margin: 4px 0 8px; font-size: 12.5px; font-weight: 300; line-height: 1.55; color: var(--ink-70); }
.sk__tekst:empty { display: none; }
.sk__achter { overflow-y: auto; }
.sk__achter .btn { width: 100%; }
.sk__draai { margin-top: 2px; padding: 8px 0 0; border: 0; background: none; font: inherit; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-55); cursor: pointer; }
.sk__draai:hover { color: var(--gold); }
.sk__x { position: absolute; top: 14px; right: 18px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(233, 214, 180, .12); color: var(--gold-light); font-size: 28px; line-height: 1; cursor: pointer; }
.sk__hint { position: absolute; left: 0; right: 0; bottom: 22px; margin: 0; text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-55); }
@media (max-width: 480px) { .sk { padding: 16px; } .sk__scene { --cw: 300; --ch: 483; } .sk__naam { font-size: 23px; } .sk__tekst { font-size: 12px; } .sk__achter { padding: 22px 20px; } }
@media (max-height: 640px) { .sk__scene { --cw: 280; --ch: 450; } .sk__hint { display: none; } }
@media (prefers-reduced-motion: reduce) { .sk, .sk__kaart { transition: none; } }

/* Aanmeldsectie: Ontdek AMRA-knop onderaan de linkerkolom (alle CTA's onderin de pagina) */
.signup__ontdek { margin-top: 18px; display: grid; gap: 10px; }
.signup__ontdek .corner--static { width: 100%; justify-content: center; }
.signup__ontdek-sub { margin: 0; font-size: 13px; font-weight: 300; line-height: 1.5; color: var(--ink-55); }
@media (min-width: 1024px) { .signup__ontdek { margin-top: 14px; } }

/* ==== v46: wereldbol recht en gecentreerd, tabbalk op maat, knoppen strakker ==== */
/* Wereldbol: geen kanteling meer, kleiner binnen zijn vlak zodat de ringtekst er altijd vrij omheen loopt */
.bol__beeld { display: grid; place-items: center; }
.bol__img { width: 80%; margin: 0 auto; transform: translateY(calc(var(--s) * -16px)) scale(calc(.94 + var(--s) * .06)); }
@keyframes bol-zweef { 0%, 100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -12px; rotate: 0deg; } }
.bol__ring { inset: 0; width: 100%; height: 100%; }
.bol__gloed { inset: 12%; }
.bol__schaduw { left: 26%; right: 26%; bottom: 2%; }
@media (max-width: 860px) { .bol__ring { inset: 0; width: 100%; height: 100%; } .bol__beeld { width: min(84vw, 420px); margin-inline: auto; } .bol__img { width: 78%; } }
/* Tabbalk Algemeen/Specificaties: alleen zo breed als de knoppen, ook als grid-item op telefoon */
.tabs-amra { width: max-content; max-width: 100%; justify-self: start; }
@media (max-width: 860px) { .bol .tabs-amra, .over__tekst > .tabs-amra { justify-self: start; width: max-content; } }
/* Knoppen: iets ronder, label altijd gecentreerd, gelijke hoogte */
.corner { border-radius: 10px; }
.corner__label { flex: 1 1 auto; text-align: center; padding: 0 30px 0 26px; letter-spacing: .08em; }
.corner--static .corner__label { text-align: center; }
@media (max-width: 860px) {
  .hero__corners { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
  .hero .corner { min-height: 54px; justify-content: stretch; }
  .hero .corner__icon { flex: 0 0 42px; width: 42px; }
  .hero .corner__label { flex: 1; text-align: center; padding: 8px 10px 8px 8px; font-size: clamp(11px, 3.1vw, 14px); letter-spacing: .04em; }
  .corner--static .corner__icon { flex: 0 0 48px; width: 48px; }
}

/* ==== Vragen als wizard: één vraag per scherm ==== */
.wiz__kop { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: -4px 0 14px; }
.wiz__teller { margin: 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-55); }
.wiz__dots { display: flex; gap: 6px; }
.wiz__dot { width: 26px; height: 3px; border-radius: 2px; background: rgba(233, 214, 180, .18); transition: background-color .3s var(--ease); }
.wiz__dot.is-done { background: var(--gold-dark); }
.wiz__dot.is-on { background: var(--gold); }
.questions--wizard .question[hidden] { display: none; }
.questions--wizard .question { padding: 24px 22px 24px; border-radius: 14px; }
.questions--wizard .question.is-in { animation: faq-in .35s var(--ease) both; }
.questions--wizard .question__label { margin: 0 0 18px; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(19px, 2.1vw, 26px); line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; color: var(--gold-light); }
.questions--wizard .question__num { display: block; margin: 0 0 10px; font-family: var(--sans); font-size: 11px; letter-spacing: .18em; color: var(--gold-dark); }
.questions--wizard .question__opt { font-family: var(--sans); font-weight: 400; text-transform: uppercase; }
.questions--wizard .pill-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.questions--wizard .pill span { position: relative; width: 100%; justify-content: flex-start; min-height: 56px; padding: 12px 18px 12px 50px; border-radius: 12px; text-align: left; font-size: 15px; line-height: 1.3; transition: border-color .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease); }
.questions--wizard .pill span::before { content: ""; position: absolute; left: 17px; top: 50%; width: 18px; height: 18px; margin-top: -9px; border-radius: 50%; border: 1.5px solid rgba(233, 214, 180, .5); transition: border-color .25s var(--ease), background .25s var(--ease); }
.questions--wizard .pill span:hover { border-color: var(--gold); background: rgba(233, 214, 180, .06); }
.questions--wizard .pill input:checked + span::before { border-color: var(--night); background: radial-gradient(circle, var(--night) 38%, transparent 44%); }
.questions--wizard .question.is-invalid { border-color: #c8735a; box-shadow: 0 0 0 3px rgba(200, 115, 90, .15); }
@media (max-width: 600px) { .questions--wizard .pill-group { grid-template-columns: minmax(0, 1fr); } .questions--wizard .question { padding: 20px 16px; } .questions--wizard .pill span { min-height: 52px; font-size: 14.5px; } }

/* ==== v47: feedback 27 sep ==== */
/* "Kun je er niet bij zijn?" in hetzelfde lettertype als de keuzekaart-titels ("Een privégesprek") */
.online .online__tekst b { font-family: var(--serif); font-weight: 600; font-stretch: 100%; font-size: 19px; line-height: 1.2; letter-spacing: -.01em; text-transform: none; color: var(--gold-light); }
/* Programma op een witte achtergrond */
.programma { background: #faf8f3; border-bottom: 1px solid rgba(15, 22, 19, .1); color: var(--night); }
.programma .eyebrow { color: #8a6a2e; }
.programma .eyebrow__line { background: #b8925a; }
.programma__title { color: var(--night); }
.programma .lead { color: rgba(15, 22, 19, .72); }
.programma .acc { border-top-color: rgba(15, 22, 19, .12); }
.programma .acc__item { border-bottom-color: rgba(15, 22, 19, .12); }
.programma .acc__title { color: var(--night); }
.programma .acc__item[open] .acc__title, .programma .acc__q:hover .acc__title { color: #7a2e18; }
.programma .acc__meta { color: #5f7a6a; }
.programma .acc__icon::before { border-color: #7a2e18; }
.programma .acc__a p { color: rgba(15, 22, 19, .72); }
.programma .acc__steps li { border-color: rgba(15, 22, 19, .22); color: #7a2e18; background: rgba(122, 46, 24, .04); }
.programma .acc__note { border-color: rgba(15, 22, 19, .18); color: rgba(15, 22, 19, .75) !important; background: #fff; }
.programma .acc__note strong { color: var(--night); }
.programma__hint { color: rgba(15, 22, 19, .55); }
.programma .corner { box-shadow: 0 18px 40px -20px rgba(15, 22, 19, .45), inset 0 1px 0 rgba(255, 255, 255, .5); }
.programma .browser { box-shadow: 0 40px 90px -40px rgba(15, 22, 19, .55); border-color: rgba(15, 22, 19, .12); }
.programma .link-ext { color: rgba(15, 22, 19, .6); } .programma .link-ext:hover { color: #7a2e18; }

/* ==== Aanmeldsectie in het licht (preview via ?wit=1; definitief = class signup--licht op de sectie) ==== */
.signup--licht { background: #faf8f3; border-top: 1px solid rgba(15, 22, 19, .1); color: var(--night); }
.signup--licht .eyebrow { color: #8a6a2e; } .signup--licht .eyebrow__line { background: #b8925a; }
.signup--licht .h2 { color: var(--night); }
.signup--licht .vsl { border-color: rgba(15, 22, 19, .12); box-shadow: 0 30px 70px -40px rgba(15, 22, 19, .5); }
.signup--licht .signup__feiten { border-color: rgba(15, 22, 19, .12); background: #fff; box-shadow: 0 20px 50px -36px rgba(15, 22, 19, .5); }
.signup--licht .signup__feiten::before { background: linear-gradient(90deg, transparent, rgba(184, 146, 90, .8), transparent); }
.signup--licht .signup__feiten li + li::before { background: linear-gradient(180deg, transparent, rgba(15, 22, 19, .18), transparent); }
.signup--licht .feit__ico { border-color: rgba(15, 22, 19, .2); background: #faf8f3; color: #7a2e18; }
.signup--licht .signup__feiten small { color: #8a6a2e; } .signup--licht .signup__feiten b { color: var(--night); } .signup--licht .signup__feiten span { color: rgba(15, 22, 19, .62); }
.signup--licht .corner--primary { background: linear-gradient(180deg, #2a3a31 0%, #0f1613 100%); border-color: #0f1613; color: var(--gold-light); box-shadow: 0 18px 40px -20px rgba(15, 22, 19, .6); }
.signup--licht .corner--primary .corner__icon { background: rgba(247, 244, 238, .1); }
.signup--licht .corner--primary:hover { background: #1d2a23; }
.signup--licht .form { border-color: rgba(15, 22, 19, .12); background: #fff; box-shadow: 0 30px 80px -50px rgba(15, 22, 19, .45); }
.signup--licht .form__progress { border-bottom-color: rgba(15, 22, 19, .1); }
.signup--licht .form__progress li { color: rgba(15, 22, 19, .5); } .signup--licht .form__progress li span { border-color: rgba(15, 22, 19, .2); }
.signup--licht .form__progress li.is-current { color: #7a2e18; } .signup--licht .form__progress li.is-current span { border-color: #7a2e18; color: #7a2e18; }
.signup--licht .form__progress li.is-done span { background: var(--night); border-color: var(--night); color: var(--gold-light); }
.signup--licht .form__legend, .signup--licht .form__done-title { color: var(--night); }
.signup--licht .form__intro, .signup--licht .form__done-text { color: rgba(15, 22, 19, .72); }
.signup--licht .form__hint, .signup--licht .form__done-sub { color: rgba(15, 22, 19, .55); border-color: rgba(15, 22, 19, .1); }
.signup--licht .form__error { color: #a63a1e; }
.signup--licht .choice__box { border-color: rgba(15, 22, 19, .14); background: #faf8f3; }
.signup--licht .choice__card--primary .choice__box { border-color: rgba(15, 22, 19, .22); background: #fff; }
.signup--licht .choice__card:hover .choice__box { border-color: rgba(15, 22, 19, .4); }
.signup--licht .choice__card input:checked + .choice__box { border-color: var(--night); background: rgba(15, 22, 19, .04); }
.signup--licht .choice__card input:focus-visible + .choice__box { outline-color: var(--night); }
.signup--licht .choice__mark { border-color: rgba(15, 22, 19, .4); } .signup--licht .choice__mark::after { background: var(--night); }
.signup--licht .choice__card input:checked + .choice__box .choice__mark { border-color: var(--night); }
.signup--licht .choice__title { color: var(--night); } .signup--licht .choice__date { color: #5f7a6a; } .signup--licht .choice__sub { color: rgba(15, 22, 19, .68); }
.signup--licht .form__sub { border-color: rgba(15, 22, 19, .12); background: #faf8f3; }
.signup--licht .form__sublabel { color: var(--night); }
.signup--licht .slots__dag span { border-color: rgba(15, 22, 19, .2); background: #fff; } .signup--licht .slots__dag b { color: var(--night); } .signup--licht .slots__dag small { color: rgba(15, 22, 19, .5); }
.signup--licht .slots__dag input:checked + span { border-color: var(--night); background: rgba(15, 22, 19, .05); } .signup--licht .slots__dag input:checked + span small { color: #7a2e18; }
.signup--licht .slots__tabel { border-color: rgba(15, 22, 19, .12); background: #fff; }
.signup--licht .slots__tabel td { border-top-color: rgba(15, 22, 19, .1); color: var(--night); }
.signup--licht .slots__tabel tr.is-pauze td { background: #f3f0e8; color: rgba(15, 22, 19, .5); }
.signup--licht .slots__slot span { border-color: rgba(15, 22, 19, .25); color: var(--night); background: #fff; }
.signup--licht .slots__slot:hover span { border-color: var(--night); }
.signup--licht .slots__slot input:checked + span { background: var(--night); border-color: var(--night); color: var(--gold-light); }
.signup--licht .btn--primary { background: linear-gradient(180deg, #2a3a31 0%, #0f1613 100%); color: var(--gold-light); box-shadow: 0 14px 40px -16px rgba(15, 22, 19, .6); }
.signup--licht .btn--primary:hover { background: #1d2a23; }
.signup--licht .btn--ghost { color: var(--night); border-color: rgba(15, 22, 19, .3); } .signup--licht .btn--ghost:hover { border-color: var(--night); background: rgba(15, 22, 19, .04); }
.signup--licht .wiz__teller { color: rgba(15, 22, 19, .55); } .signup--licht .wiz__dot { background: rgba(15, 22, 19, .14); } .signup--licht .wiz__dot.is-done { background: #b8925a; } .signup--licht .wiz__dot.is-on { background: var(--night); }
.signup--licht .question { border-color: rgba(15, 22, 19, .12); background: #faf8f3; }
.signup--licht .question__label { color: var(--night); } .signup--licht .question__num { color: #7a2e18; } .signup--licht .question__opt { color: rgba(15, 22, 19, .5); }
.signup--licht .pill span { border-color: rgba(15, 22, 19, .22); color: var(--night); background: #fff; }
.signup--licht .questions--wizard .pill span:hover { border-color: var(--night); background: #fff; }
.signup--licht .questions--wizard .pill span::before { border-color: rgba(15, 22, 19, .4); }
.signup--licht .pill input:checked + span { background: var(--night); border-color: var(--night); color: var(--gold-light); }
.signup--licht .questions--wizard .pill input:checked + span::before { border-color: var(--gold-light); background: radial-gradient(circle, var(--gold-light) 38%, transparent 44%); }
.signup--licht .field label { color: rgba(15, 22, 19, .55); }
.signup--licht .field input { border-color: rgba(15, 22, 19, .2); background: #fff; color: var(--night); }
.signup--licht .field input:focus { border-color: var(--night); box-shadow: 0 0 0 3px rgba(15, 22, 19, .1); }
.signup--licht .review, .signup--licht .review__row { border-color: rgba(15, 22, 19, .1); }
.signup--licht .review__row dt { color: rgba(15, 22, 19, .5); } .signup--licht .review__row dd { color: var(--night); } .signup--licht .review__row dd small { color: rgba(15, 22, 19, .5); }
.signup--licht .review__edit { color: #7a2e18; } .signup--licht .review__edit:hover { color: var(--night); }

/* ==== Sprekerswiel: vegen + duidelijk dat je kunt tikken ==== */
.wheel-wrap { cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.wheel-wrap.is-slepen { cursor: grabbing; }
.wheel-wrap.is-slepen .card { transition: none; }
.card img { -webkit-user-drag: none; pointer-events: none; }
.card.is-top { --lift: 26; box-shadow: 0 30px 60px -10px rgba(0, 0, 0, .75), 0 0 0 2px rgba(233, 214, 180, .7); }
.card__info { position: absolute; left: 12px; top: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px 6px 8px; border-radius: 999px; background: rgba(15, 22, 19, .62); border: 1px solid rgba(233, 214, 180, .45); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); opacity: .85; transition: opacity .4s var(--ease), background-color .4s var(--ease), color .4s var(--ease); pointer-events: none; }
.card__info::before { content: "+"; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); color: var(--night); font-size: 13px; line-height: 1; font-weight: 700; }
.card.is-top .card__info { opacity: 1; background: var(--gold); color: var(--night); animation: info-puls 2.2s ease-in-out infinite; }
.card.is-top .card__info::before { background: var(--night); color: var(--gold); }
@keyframes info-puls { 0%, 100% { box-shadow: 0 0 0 0 rgba(233, 214, 180, .55); } 50% { box-shadow: 0 0 0 8px rgba(233, 214, 180, 0); } }
.speakers__tip { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 4px; padding: 8px 16px 8px 12px; border: 1px solid rgba(233, 214, 180, .35); border-radius: 999px; background: rgba(15, 22, 19, .55); font-size: 13px; color: var(--gold-light); }
.speakers__tip svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; animation: tik 2.2s ease-in-out infinite; }
@keyframes tik { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(3px) scale(.92); } }
@media (max-width: 600px) { .card__info { left: 8px; top: 8px; padding: 4px 8px 4px 5px; font-size: 9px; } .card__info::before { width: 13px; height: 13px; font-size: 11px; } .card.is-top { --lift: 18; } .speakers__tip { font-size: 11.5px; padding: 7px 12px 7px 10px; } }
@media (prefers-reduced-motion: reduce) { .card.is-top .card__info, .speakers__tip svg { animation: none; } }

/* Korte aanloop naar het formulier (vervangt de Ontdek AMRA-knop) */
.signup__cta { display: grid; gap: 6px; margin: 0 0 16px; padding-left: 16px; border-left: 2px solid var(--gold); }
.signup__cta-kop { margin: 0; font-family: var(--display); font-weight: 900; font-stretch: 125%; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; color: var(--gold-light); }
.signup__cta-tekst { margin: 0; max-width: 46ch; font-size: 14.5px; font-weight: 300; line-height: 1.55; color: var(--ink-70); }
.signup--licht .signup__cta { border-left-color: #7a2e18; } .signup--licht .signup__cta-kop { color: var(--night); } .signup--licht .signup__cta-tekst { color: rgba(15, 22, 19, .7); }
@media (max-width: 1023px) { .signup__cta { margin-top: 8px; } }

/* ==== Aanmeldsectie: witte achtergrond, formulier blijft donkergroen (27 sep) ==== */
.signup--wit { background: #faf8f3; border-top: 1px solid rgba(15, 22, 19, .1); }
.signup--wit .eyebrow { color: #8a6a2e; } .signup--wit .eyebrow__line { background: #b8925a; }
.signup--wit .h2 { color: var(--night); }
.signup--wit .vsl { border-color: rgba(15, 22, 19, .12); box-shadow: 0 30px 70px -40px rgba(15, 22, 19, .5); }
.signup--wit .signup__feiten { border-color: rgba(15, 22, 19, .12); background: #fff; box-shadow: 0 20px 50px -36px rgba(15, 22, 19, .5); }
.signup--wit .signup__feiten::before { background: linear-gradient(90deg, transparent, rgba(184, 146, 90, .8), transparent); }
.signup--wit .signup__feiten li + li::before { background: linear-gradient(180deg, transparent, rgba(15, 22, 19, .18), transparent); }
.signup--wit .feit__ico { border-color: rgba(15, 22, 19, .2); background: #faf8f3; color: #7a2e18; }
.signup--wit .signup__feiten small { color: #8a6a2e; } .signup--wit .signup__feiten b { color: var(--night); } .signup--wit .signup__feiten span { color: rgba(15, 22, 19, .62); }
.signup--wit .signup__cta { border-left-color: #7a2e18; } .signup--wit .signup__cta-kop { color: var(--night); } .signup--wit .signup__cta-tekst { color: rgba(15, 22, 19, .7); }
/* het formulier zelf: massief donkergroen, zodat het op wit niet grijs oogt */
.signup--wit .form { background: linear-gradient(180deg, #24352b 0%, #151f19 100%); border-color: rgba(15, 22, 19, .3); box-shadow: 0 40px 90px -45px rgba(15, 22, 19, .7); }
