/* ════════════════════════════════════════════════════
   BETAALBUURSCHAP — Stylesheet
   Stijl: luxury vastgoed / vakantiepark / rust wonen
   ════════════════════════════════════════════════════ */

/* 1. TOKENS & RESET
   ════════════════════════════════════════════════════ */
:root {
  --creme:        #F7F2E8;
  --groen:        #2A4A35;
  --groen-donker: #1A3224;
  --groen-mid:    #3d6b4f;
  --hout:         #C8944A;
  --zwart:        #111411;
  --wit:          #FAFAF5;
  --tekst-licht:  rgba(255,255,255,0.85);
  --tekst-subtiel:rgba(255,255,255,0.55);

  --font-titel: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --trans: 220ms var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  background: var(--zwart);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
strong { font-weight: 500; }

/* 2. ANIMATIES
   ════════════════════════════════════════════════════ */
.fade-in,
.fade-in-up {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.fade-in-up  { transform: translateY(28px); }
.fade-in.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: none;
}

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

/* 3. NAVIGATIE
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
.nav.scrolled {
  background: rgba(17, 20, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 3rem;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity var(--trans);
}
.nav__logo-img:hover { opacity: .85; }
.nav__cta {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .55rem 1.5rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 2rem;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.nav__cta:hover {
  background: #fff;
  color: var(--zwart);
  border-color: #fff;
}

/* 4. SCENES (basis)
   ════════════════════════════════════════════════════ */
.scene {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Achtergrondafbeelding via CSS variabele; gradient als fallback */
  background-image: var(--scene-bg, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Parallax uitschakelen op mobiel (performance) */
@media (max-width: 768px) {
  .scene { background-attachment: scroll; }
}

.scene__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.scene__overlay--warm {
  background: linear-gradient(to bottom, rgba(20,15,5,.2) 0%, rgba(20,15,5,.5) 100%);
}
.scene__overlay--groen {
  background: linear-gradient(to bottom, rgba(26,50,36,.7) 0%, rgba(26,50,36,.85) 100%);
}
.scene__overlay--donker {
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.7) 100%);
}

.scene__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 7rem) 2.5rem clamp(3rem, 7vh, 5.5rem);
}
.scene__inner--midden { text-align: center; }
.scene__inner--links  { max-width: 680px; }
.scene__inner--rechts { max-width: 680px; margin-left: auto; }

/* 5. TYPOGRAFIE SCENES
   ════════════════════════════════════════════════════ */
.scene__kap {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tekst-subtiel);
  margin-bottom: 1.25rem;
}
.scene__kap--donker { color: rgba(30,42,30,.5); }

.scene__h1 {
  font-family: var(--font-titel);
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: clamp(.75rem, 2vh, 1.5rem);
}

.scene__h2 {
  font-family: var(--font-titel);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: clamp(.6rem, 1.5vh, 1.5rem);
}
.scene__h2--donker { color: var(--zwart); }
.scene__h2 em,
.scene__h1 em {
  font-style: italic;
  font-weight: 300;
}

.scene__lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--tekst-licht);
  max-width: 560px;
  margin: 0 auto;
}
.scene__lead--donker { color: rgba(20,30,20,.68); }
.scene__inner--midden .scene__lead { margin: 0 auto; }
.scene__inner--links  .scene__lead { margin: 0; }
.scene__lead--smal { max-width: 480px; }

.scene__tekst {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--tekst-licht);
  max-width: 480px;
  margin-bottom: 1rem;
}
.scene__tekst p { margin-bottom: .85rem; }
.scene__tekst strong { color: #fff; font-weight: 500; }

.scene__accent {
  font-family: var(--font-titel);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--hout);
  margin-top: 1.5rem;
  line-height: 1.2;
}

.scene__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  padding: .55rem 1.2rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}

/* 6. SCENE — HERO (gradient fallback)
   ════════════════════════════════════════════════════ */
.scene--hero {
  background-color: var(--groen-donker);
  background-image:
    linear-gradient(to bottom right, rgba(26,50,36,.9), rgba(17,20,17,.8)),
    var(--scene-bg, none);
}

/* 7. SCENE — DONKER
   ════════════════════════════════════════════════════ */
.scene--donker {
  background: linear-gradient(135deg, #0e1a0e 0%, #141f14 60%, #0a1208 100%);
}

/* 8. SCENE — MIST / OCHTEND (gradient fallback)
   ════════════════════════════════════════════════════ */
.scene--mist {
  background-color: #2a3f2a;
}

/* 9. SCENE — SPLIT (concept)
   ════════════════════════════════════════════════════ */
.scene--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
  align-items: stretch;
}
.split__beeld {
  background-color: var(--groen);
  background-size: cover;
  background-position: center;
  height: 100%;
}
.split__tekst {
  padding: clamp(3rem, 7vh, 6rem) clamp(2rem, 4vw, 4rem);
  background: var(--wit);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .4rem;
  overflow-y: auto;
}
.split__tekst h2  { margin-bottom: 1rem; }
.split__tekst p   {
  font-size: .97rem;
  color: rgba(20,30,20,.75);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.split__tekst p strong { color: var(--groen-donker); }

.scene--split .scroll-pijl {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
}

/* 10. SCENE — LICHT (cijfers)
   ════════════════════════════════════════════════════ */
.scene--licht {
  background: var(--wit);
}

/* 11. SCENE — AANMELDEN (min-height: formulier moet altijd volledig zichtbaar)
   ════════════════════════════════════════════════════ */
.scene--aanmelden {
  height: auto;
  min-height: 100svh;
  background: linear-gradient(160deg, #0e1a0e 0%, #1a3224 50%, #0e1a0e 100%);
}

/* 12. SCROLL-PIJL (bouncing)
   ════════════════════════════════════════════════════ */
.scroll-pijl {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  animation: stuiteren 2.4s ease-in-out infinite;
}
.scroll-pijl svg { width: 20px; height: 20px; }
.scroll-pijl:hover {
  border-color: rgba(255,255,255,.8);
  color: #fff;
  background: rgba(255,255,255,.08);
  animation-play-state: paused;
}
.scroll-pijl--donker {
  border-color: rgba(30,42,30,.3);
  color: rgba(30,42,30,.5);
}
.scroll-pijl--donker:hover {
  border-color: var(--groen);
  color: var(--groen);
  background: rgba(42,74,53,.06);
}

@keyframes stuiteren {
  0%, 100% { transform: translateX(-50%) translateY(0);   }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* 13. KNOP LICHT (in split sectie)
   ════════════════════════════════════════════════════ */
.knop-licht {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .75rem 1.75rem;
  background: var(--groen);
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 2rem;
  transition: background var(--trans), transform var(--trans);
}
.knop-licht:hover {
  background: var(--groen-donker);
  transform: translateY(-1px);
}

/* 14. PILLS (woning features)
   ════════════════════════════════════════════════════ */
.scene__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
  list-style: none;
}
.scene__pills li {
  padding: .35rem .9rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}

/* 15. DUO KAARTEN (buurt scene)
   ════════════════════════════════════════════════════ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: clamp(.75rem, 2vh, 2rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.duo__kaart {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  padding: 1.5rem;
}
.duo__kaart p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-top: .75rem;
}
.duo__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
}
.duo__tag--blauw { background: rgba(56,130,230,.25); color: #90c4ff; }
.duo__tag--amber { background: rgba(200,148,74,.25);  color: #f0c070; }

/* 16. CIJFERS GRID
   ════════════════════════════════════════════════════ */
.cijfers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 2vh, 1.5rem) clamp(1rem, 3vw, 3rem);
  margin: clamp(1rem, 3vh, 2.5rem) auto;
  max-width: 900px;
  text-align: center;
}
.cijfer { padding: clamp(.75rem, 1.5vh, 1.5rem) 0; border-top: 1px solid rgba(30,42,30,.15); }
.cijfer__getal {
  display: block;
  font-family: var(--font-titel);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--groen);
  line-height: 1.1;
  margin-bottom: .3rem;
}
.cijfer__label {
  display: block;
  font-size: .75rem;
  color: rgba(20,30,20,.5);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.cijfers__noot {
  text-align: center;
  font-size: .82rem;
  color: rgba(20,30,20,.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 17. FORMULIER
   ════════════════════════════════════════════════════ */
.aanmeld-form {
  width: 100%;
  max-width: 620px;
  margin: 2.5rem auto 0;
}
.veld-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.veld {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.veld label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.optioneel {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: .75rem;
  opacity: .65;
}
.veld input[type="text"],
.veld input[type="email"] {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .5rem;
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: #fff;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  width: 100%;
}
.veld input::placeholder { color: rgba(255,255,255,.3); }
.veld input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
}
.veld input.fout {
  border-color: #e87060;
  background: rgba(232,112,96,.08);
}
.fout-bericht {
  font-size: .78rem;
  color: #e87060;
  margin-top: .25rem;
}

.radio-groep {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  padding-top: .4rem;
}
.radio-optie {
  display: flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}
.radio-optie input { accent-color: var(--hout); width: 16px; height: 16px; cursor: pointer; }

.akkoord-rij {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 1.25rem 0;
  cursor: pointer;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.akkoord-rij input {
  accent-color: var(--hout);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  cursor: pointer;
}
.akkoord-rij input.fout { outline: 2px solid #e87060; border-radius: 3px; }
.akkoord-rij a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 3px; }
.akkoord-rij a:hover { color: #fff; }

.verzend-knop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--hout);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  border-radius: .6rem;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.verzend-knop:hover {
  background: #b07e38;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,148,74,.35);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(42,74,53,.4);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  text-align: center;
}
.form-success.zichtbaar { display: flex; }
.form-success svg { width: 36px; height: 36px; color: #7fcf9a; }
.form-success p { color: rgba(255,255,255,.85); font-size: .95rem; }

.aanmeld-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* 18. STATUS DOT
   ════════════════════════════════════════════════════ */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fcf9a;
  flex-shrink: 0;
}
.status-dot--pulse {
  animation: pulseren 2.5s ease-in-out infinite;
}
@keyframes pulseren {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127,207,154,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(127,207,154,0); }
}

/* 19. MUZIEKKNOP
   ════════════════════════════════════════════════════ */
.muziek-knop {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.muziek-knop:hover {
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.muziek-icon { width: 13px; height: 13px; }
.muziek-icon--uit { display: none; }
.muziek-knop[aria-pressed="true"] .muziek-icon--aan { display: none; }
.muziek-knop[aria-pressed="true"] .muziek-icon--uit { display: block; }

/* 20. BRONLINK
   ════════════════════════════════════════════════════ */
.bronlink {
  color: rgba(255,255,255,.5);
  font-size: .75em;
  vertical-align: super;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color var(--trans);
}
.bronlink:hover { color: rgba(255,255,255,.9); }

/* 21. GALERIJ
   ════════════════════════════════════════════════════ */
.scene--galerij {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--zwart);
}

.galerij {
  position: absolute;
  inset: 0;
}

.galerij__slide {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease;
  will-change: opacity, transform;
}
.galerij__slide--actief {
  opacity: 1;
  transform: scale(1);
}

.galerij__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.1) 50%,
    rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Pijlen links/rechts */
.galerij__pijlen {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 3;
  pointer-events: none;
}
.galerij__pijl {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background var(--trans), transform var(--trans);
}
.galerij__pijl:hover {
  background: rgba(255,255,255,.25);
  transform: scale(1.08);
}

/* Label bovenin */
.galerij__kap {
  position: absolute;
  top: clamp(5rem, 10vh, 8rem);
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
}

/* Dots onderaan */
.galerij__dots {
  position: absolute;
  bottom: clamp(4rem, 8vh, 6rem);
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .6rem;
  z-index: 3;
}
.galerij__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .35s ease, transform .35s ease;
}
.galerij__dot--actief {
  background: #fff;
  transform: scale(1.4);
}
.galerij__dot:hover:not(.galerij__dot--actief) {
  background: rgba(255,255,255,.6);
}

/* 22. MAILERLITE EMBED OVERRIDES
   ════════════════════════════════════════════════════ */
.ml-embedded {
  width: 100%;
  max-width: 620px;
  margin: 2rem auto 0;
}
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedContainer {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.ml-embedded .ml-block-form { background: transparent !important; }

/* Labels */
.ml-embedded .label-description,
.ml-embedded label:not(.ml-field-radio label) {
  font-family: var(--font-body) !important;
  font-size: .78rem !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.55) !important;
  margin-bottom: .35rem !important;
}

/* Inputs */
.ml-embedded input[type="text"],
.ml-embedded input[type="email"] {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: .5rem !important;
  padding: .7rem 1rem !important;
  font-family: var(--font-body) !important;
  font-size: .95rem !important;
  color: #fff !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 220ms ease, background 220ms ease !important;
}
.ml-embedded input[type="text"]::placeholder,
.ml-embedded input[type="email"]::placeholder { color: rgba(255,255,255,.3) !important; }
.ml-embedded input[type="text"]:focus,
.ml-embedded input[type="email"]:focus {
  border-color: rgba(255,255,255,.5) !important;
  background: rgba(255,255,255,.1) !important;
}

/* Radio buttons */
.ml-embedded .ml-field-radio label {
  color: rgba(255,255,255,.75) !important;
  font-size: .9rem !important;
}

/* Checkbox / consent */
.ml-embedded .ml-form-checkboxRow,
.ml-embedded .ml-form-checkboxRow span {
  color: rgba(255,255,255,.6) !important;
  font-size: .85rem !important;
  line-height: 1.5 !important;
}
.ml-embedded .ml-form-checkboxRow a { color: rgba(255,255,255,.8) !important; }

/* Submit button */
.ml-embedded .ml-form-embedSubmit button,
.ml-embedded button[type="submit"] {
  width: 100% !important;
  padding: 1rem 2rem !important;
  background: var(--hout) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: .95rem !important;
  font-weight: 500 !important;
  letter-spacing: .03em !important;
  border-radius: .6rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 220ms ease, transform 220ms ease !important;
}
.ml-embedded .ml-form-embedSubmit button:hover,
.ml-embedded button[type="submit"]:hover {
  background: #b07e38 !important;
  transform: translateY(-2px) !important;
}

/* Success message */
.ml-embedded .ml-form-successBody {
  background: rgba(42,74,53,.4) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 1rem !important;
  padding: 2rem !important;
  text-align: center !important;
  color: rgba(255,255,255,.85) !important;
}
.ml-embedded .ml-form-successBody h4 {
  color: #fff !important;
  font-family: var(--font-titel) !important;
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  margin-bottom: .5rem !important;
}
.ml-embedded .ml-form-successBody p { color: rgba(255,255,255,.7) !important; }

/* 22. FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--zwart);
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer__naam {
  font-family: var(--font-titel);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  margin-bottom: .4rem;
}
.footer__sub {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer__nav a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color var(--trans);
}
.footer__nav a:hover { color: rgba(255,255,255,.8); }
.footer__copy {
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}

/* 21. FAQ
   ════════════════════════════════════════════════════ */
.faq {
  background: var(--creme);
  padding: 5rem 2.5rem;
}
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq__kop {
  font-family: var(--font-titel);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--groen-donker);
  margin-bottom: 2.5rem;
  text-align: center;
}
.faq__lijst { list-style: none; }
.faq__item {
  border-bottom: 1px solid rgba(42,74,53,.12);
  padding: 1.5rem 0;
}
.faq__item:first-child { padding-top: 0; }
.faq__item:last-child { border-bottom: none; padding-bottom: 0; }
.faq__item dt {
  font-size: 1rem;
  font-weight: 500;
  color: var(--groen);
  margin-bottom: .6rem;
  line-height: 1.4;
}
.faq__item dd {
  font-size: .95rem;
  color: #3a3a30;
  line-height: 1.75;
  margin: 0;
}

/* 22. RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .scene--split { grid-template-columns: 1fr; }
  .split__beeld { min-height: 55vw; }
  .split__tekst { padding: 3.5rem 2.5rem 4rem; }
  .duo { grid-template-columns: 1fr; max-width: 480px; }
  .cijfers { grid-template-columns: repeat(2, 1fr); }
  .veld-rij { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: .85rem 1.25rem; }
  .nav__logo-img { height: 50px; }
  .nav__cta { font-size: .72rem; padding: .4rem .9rem; }

  .scene__inner { padding: 5.5rem 1.25rem 4rem; }
  .scene__h1 { font-size: clamp(3.2rem, 15vw, 6rem); }
  .scene__h2 { font-size: clamp(2.2rem, 10vw, 4rem); }
  .scene__lead { font-size: 1rem; }
  .scene__lead--smal { max-width: 100%; }

  .split__tekst { padding: 2.5rem 1.25rem 3rem; }
  .split__tekst .scene__h2--donker { font-size: clamp(2rem, 9vw, 3.5rem); }

  .duo { max-width: 100%; }
  .duo__kaart { padding: 1.25rem; }

  .scene__pills { gap: .5rem; }
  .scene__pills li { font-size: .75rem; padding: .3rem .75rem; }

  .aanmeld-form { margin-top: 1.5rem; }
  .akkoord-rij { font-size: .82rem; }

  .faq { padding: 3.5rem 1.25rem; }
  .faq__kop { margin-bottom: 2rem; }

  .scroll-pijl { bottom: 1.25rem; }
  .muziek-knop { bottom: 1.25rem; right: 1.25rem; }
  .footer { padding: 2.5rem 1.25rem; }
  .footer__nav { flex-direction: column; gap: .75rem; }
}

@media (max-width: 380px) {
  .scene__h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .scene__h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
  .nav__logo-img { height: 34px; }
}
