/* =====================================================================
   Op de Foto — Design system
   Stijl: kleurrijk & energiek (festival-vibe, bold, gradients)
   Merkanker: oranje (uit het logo) + festival-accenten
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand + festival palette */
  --orange:   #ff6a1a;
  --orange-d: #e8560c;
  --pink:     #ff2d78;
  --magenta:  #e0189a;
  --violet:   #7a2bf5;
  --indigo:   #4318c9;
  --cyan:     #08c6e6;
  --teal:     #12d8b8;
  --lime:     #c6f135;
  --yellow:   #ffc531;

  /* Neutrals */
  --ink:      #17101f;   /* deep aubergine-black */
  --ink-2:    #2a2033;
  --muted:    #6b6577;
  --line:     #ece7f1;
  --bg:       #ffffff;
  --bg-soft:  #fff6ef;   /* warm off-white */
  --bg-cream: #fbf7f2;

  /* Signature gradients */
  --grad-hot:  linear-gradient(120deg, #ff2d78 0%, #ff6a1a 52%, #ffc531 100%);
  --grad-cool: linear-gradient(120deg, #7a2bf5 0%, #e0189a 55%, #ff6a1a 100%);
  --grad-night:linear-gradient(160deg, #2a1140 0%, #17101f 55%, #17101f 100%);
  --grad-lime: linear-gradient(120deg, #12d8b8 0%, #c6f135 100%);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow-sm: 0 6px 20px -8px rgba(23, 16, 31, .22);
  --shadow:    0 24px 60px -22px rgba(23, 16, 31, .35);
  --shadow-color: 0 20px 50px -18px rgba(255, 45, 120, .5);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip klipt decoratieve elementen (blobs/slider) die buiten
   het scherm uitsteken, zónder een scroll-container te maken (sticky header
   blijft dus werken). Voorkomt horizontaal 'wegslepen' met wit vlak rechts. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  /* Uitzondering: de merkenslider en de ANPR-uitleg zijn bewust doorlopend,
     ze horen bij de merkbeleving. Deze klasse-regels winnen van de * hierboven. */
  .marquee__track { animation-duration: 34s !important; animation-iteration-count: infinite !important; }
  .anpr-car   { animation-duration: 5s !important; animation-iteration-count: infinite !important; }
  .anpr-flash { animation-duration: 5s !important; animation-iteration-count: infinite !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin: 0 0 .4em; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--pink); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: 26px; }
.hidden { display: none !important; }

/* ---------- Typography scale ---------- */
.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.h-xl { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-lg { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.lead { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--muted); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--magenta);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-hot); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--lime); }
.gradient-text {
  background: var(--grad-hot);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gradient-text--cool { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  border: 0; color: var(--btn-fg);
  background: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--grad-hot); box-shadow: var(--shadow-color); }
.btn--primary:hover { box-shadow: 0 26px 60px -16px rgba(255, 45, 120, .65); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid rgba(23,16,31,.16); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { background: #fff; color: var(--ink); }
.btn--on-dark:hover { box-shadow: 0 20px 44px -14px rgba(255,255,255,.4); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 2px solid rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 14px 0;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(23,16,31,.06), 0 12px 30px -22px rgba(23,16,31,.3);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-hot);
  box-shadow: var(--shadow-color);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand em { font-style: normal; color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  display: inline-block; padding: 10px 14px; border-radius: 999px;
  font-weight: 500; font-size: .96rem; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav__links a.is-active { color: var(--magenta); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { padding: 11px 20px; }

/* dropdown */
.has-drop { position: relative; }
/* onzichtbare hover-brug over de kloof tussen trigger en menu,
   zodat het menu niet sluit als je er met de muis naartoe beweegt */
.has-drop::after {
  content: ""; position: absolute; left: -10px; right: -10px; top: 100%;
  height: 18px; z-index: 61;
}
.drop {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px;
  min-width: 250px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
  display: grid; gap: 2px;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; font-size: .95rem; color: var(--ink-2); }
.drop a:hover { background: var(--bg-soft); color: var(--ink); }
.drop .dot { width: 10px; height: 10px; border-radius: 4px; flex: none; }

/* burger + mobile */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2.2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; transform: translate(-50%, -50%); }
.burger span::before { transform: translate(-50%, -8px); }
.burger span::after  { transform: translate(-50%, 6px); }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .burger span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--grad-night); color: #fff;
  padding: 96px 26px 40px;
  transform: translateY(-100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
body.nav-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu .sub { font-size: 1.05rem; font-weight: 500; padding-left: 16px; color: rgba(255,255,255,.75); border: 0; }
.mobile-menu .btn { margin-top: 24px; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 80px) 0 clamp(60px, 9vw, 110px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero__title { margin-bottom: .3em; }
.hero__blurb { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink-2); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__media { position: relative; }
.hero__photo {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); transform: rotate(2deg);
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--2 { position: absolute; width: 46%; right: -6%; bottom: -8%; aspect-ratio: 1; transform: rotate(-5deg); z-index: 3; }
.hero__badge {
  position: absolute; left: -6%; top: 8%; z-index: 4;
  background: #fff; border-radius: 18px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; transform: rotate(-4deg);
}
.hero__badge b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.hero__badge span { font-size: .8rem; color: var(--muted); }
.hero__emoji { font-size: 1.6rem; }

/* decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; z-index: -1; pointer-events: none; }
.blob--1 { width: 420px; height: 420px; background: var(--pink); top: -140px; right: -170px; }
.blob--2 { width: 360px; height: 360px; background: var(--violet); bottom: -140px; left: -100px; opacity: .35; }
.blob--3 { width: 300px; height: 300px; background: var(--cyan); top: 40%; left: 30%; opacity: .25; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 22px; border-radius: var(--radius-sm); background: var(--bg-soft); border: 1px solid var(--line); }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.7rem); display: block; line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .9rem; color: var(--muted); }
.stat:nth-child(1) b { color: var(--orange); }
.stat:nth-child(2) b { color: var(--pink); }
.stat:nth-child(3) b { color: var(--violet); }
.stat:nth-child(4) b { color: var(--cyan); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--ink); opacity: .32; white-space: nowrap; display: inline-flex; align-items: center; gap: 44px; }
/* dot-divider via pseudo-element (geen tekstglyph -> geen encoding/mojibake-risico) */
.marquee__item::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); opacity: .8; flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Marquee blijft rustig bewegen; alleen bij expliciete reduced-motion stilgezet */

/* ---------- Section headers ---------- */
.section-head { max-width: 62ch; margin-bottom: clamp(30px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }

/* ---------- Service cards ---------- */
.services { grid-template-columns: repeat(3, 1fr); }
.svc {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 30px;
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; min-height: 260px;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc__glow { position: absolute; inset: auto -30% -60% auto; width: 220px; height: 220px; border-radius: 50%; filter: blur(40px); opacity: .0; transition: opacity .3s; }
.svc:hover .svc__glow { opacity: .5; }
.svc__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.svc__icon svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.4rem; margin-bottom: .3em; }
.svc p { color: var(--ink-2); margin-bottom: 20px; }
.svc__link { margin-top: auto; font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.svc__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc:hover .svc__link svg { transform: translateX(5px); }

/* color themes for icons/glow */
.t-orange  { background: linear-gradient(135deg, #ff8a3d, #ff6a1a); }
.t-pink    { background: linear-gradient(135deg, #ff5fa2, #e0189a); }
.t-violet  { background: linear-gradient(135deg, #9a5bff, #7a2bf5); }
.t-cyan    { background: linear-gradient(135deg, #3fdcf5, #08c6e6); }
.t-lime    { background: linear-gradient(135deg, #d6f95a, #9dcf14); color: var(--ink) !important; }
.t-yellow  { background: linear-gradient(135deg, #ffd460, #ffab00); color: var(--ink) !important; }
.g-orange { background: var(--orange); } .g-pink { background: var(--pink); }
.g-violet { background: var(--violet); } .g-cyan { background: var(--cyan); }
.g-lime { background: var(--lime); } .g-yellow { background: var(--yellow); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag { font-size: .85rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2); }

/* checklist */
.checklist { list-style: none; display: grid; gap: 14px; margin: 6px 0 0; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--grad-lime); color: var(--ink); margin-top: 2px; }
.checklist .ic svg { width: 15px; height: 15px; }

/* ---------- Clients mosaic ---------- */
.clients { grid-template-columns: repeat(6, 1fr); gap: 16px; }
.client-tile {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.client-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.client-tile:hover { transform: translateY(-6px) rotate(-1.5deg); box-shadow: var(--shadow); z-index: 2; }
.client-tile:hover img { transform: scale(1.08); }

/* ---------- Steps ---------- */
.steps { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); position: relative; }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 1rem; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.step h4 { font-size: 1.15rem; margin-bottom: .3em; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); color: #fff; background: var(--grad-cool); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.9); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-band .blob { opacity: .4; }

/* dark section */
.section--dark { background: var(--grad-night); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead, .section--dark p { color: rgba(255,255,255,.82); }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }

/* ---------- Values ---------- */
.values { grid-template-columns: repeat(3, 1fr); }
.value { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.value .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; }
.value h3 { font-size: 1.2rem; }
.value p { font-size: .96rem; margin: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--grad-night); color: #fff; padding: clamp(70px, 11vw, 130px) 0 clamp(50px, 7vw, 90px); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.85); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); }
.faq__q .chev { flex: none; transition: transform .3s var(--ease); color: var(--magenta); }
.faq__item.open .chev { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 22px 20px; margin: 0; color: var(--ink-2); }

/* ---------- Form ---------- */
.form-wrap { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.fieldset { border: 0; padding: 0; margin: 0 0 26px; }
.fieldset__legend { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--magenta); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fieldset__legend .n { width: 24px; height: 24px; border-radius: 8px; background: var(--grad-hot); color: #fff; display: grid; place-items: center; font-size: .78rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field .req { color: var(--pink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: var(--bg-cream); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 4px rgba(122,43,245,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; background: var(--bg-cream); transition: border-color .2s, background .2s; font-size: .95rem; }
.check:hover { border-color: var(--violet); }
.check input { width: 18px; height: 18px; accent-color: var(--violet); }
.check:has(input:checked) { border-color: var(--violet); background: #fff; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-status { margin-top: 14px; padding: 14px 16px; border-radius: 12px; font-weight: 500; display: none; }
.form-status.ok { display: block; background: rgba(18,216,184,.14); color: #0a7d67; border: 1px solid rgba(18,216,184,.4); }
.form-status.err { display: block; background: rgba(255,45,120,.1); color: #c01860; border: 1px solid rgba(255,45,120,.3); }

/* aside promises */
.promise { display: grid; gap: 14px; }
.promise__item { display: flex; gap: 14px; padding: 18px; border-radius: 16px; background: var(--bg-soft); border: 1px solid var(--line); }
.promise__item .n { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; flex: none; }
.contact-card { margin-top: 20px; padding: 24px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.contact-card a { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: #fff; font-weight: 500; }
.contact-card a:hover .contact-card__ic { transform: scale(1.1); }
.contact-card__ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); transition: transform .25s var(--ease); }
.contact-card__ic svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(50px, 7vw, 80px) 0 30px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-display); }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--grad-hot); transform: translateY(-3px); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Legal / prose ---------- */
.legal-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.legal-toc a { padding: 10px 18px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink-2); transition: border-color .2s, color .2s, background .2s; }
.legal-toc a:hover { border-color: var(--violet); color: var(--ink); background: #fff; }
.legal { max-width: 820px; }
.legal p { color: var(--ink-2); margin: 0 0 1em; }
.legal-h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0 20px; padding-top: 44px; border-top: 2px solid var(--line); scroll-margin-top: 100px; }
.legal-h2:first-child { border-top: 0; padding-top: 0; }
.legal-h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--magenta); }
.legal-h4 { font-family: var(--font-display); font-size: 1.02rem; margin: 22px 0 8px; color: var(--ink); }
.legal-list { list-style: none; display: grid; gap: 8px; margin: 4px 0 18px; }
.legal-list li { position: relative; padding-left: 22px; color: var(--ink-2); }
.legal-list li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 8px; height: 8px; border-radius: 3px; background: var(--grad-hot); }

/* ---------- Reveal animation ----------
   Alleen verbergen wanneer JavaScript draait (.js op <html>).
   Zonder JS blijft alle content gewoon zichtbaar (belangrijk voor
   bezoekers zonder JS én voor zoekmachines/AI-crawlers). */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
.js .reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services, .clients { grid-template-columns: repeat(3, 1fr); }
  .clients { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin: 20px auto 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .services, .values { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .clients { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .steps, .grid-2, .checks { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .hero__photo--2 { right: 0; }
  .section { padding: 56px 0; }
  .cta-band__actions .btn, .hero__actions .btn { flex: 1 1 auto; }
}

/* =====================================================================
   Toevoegingen (v2): logo, page-hero foto's, impressies, service-detail,
   voor/na, cases, badge, modal, footer-fixes
   ===================================================================== */

/* Logo in header/footer */
.brand__logo { height: 44px; width: auto; display: block; }
.is-scrolled .brand__logo { height: 38px; }
.site-footer .brand__logo { height: 46px; }

/* Page-hero met achtergrondfoto */
.page-hero--photo { color: #fff; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(23,16,31,.9) 0%, rgba(23,16,31,.66) 48%, rgba(23,16,31,.4) 100%); }
.page-hero--photo .blob { opacity: .3; }

/* Masonry-galerij — behoudt de beeldverhouding van elke bronfoto */
.gallery { column-count: 3; column-gap: 16px; }
.gallery__item { break-inside: avoid; margin: 0 0 16px; }
.gallery figcaption { position: absolute; left: -9999px; }   /* voor screenreaders/SEO */
.gallery__btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery__btn img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.gallery__btn::after { content: ""; position: absolute; inset: 0; background: rgba(23,16,31,0); transition: background .3s; }
.gallery__btn:hover img { transform: scale(1.05); }
.gallery__btn:hover::after { background: rgba(23,16,31,.12); }
.gallery__btn:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 560px) { .gallery { column-count: 1; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(15,10,20,.94); }
.lightbox.open { display: block; animation: fade .25s var(--ease); }
.lightbox__stage { position: absolute; inset: 0; display: grid; place-items: center; padding: 68px 20px; }
.lightbox__img { max-width: 94vw; max-height: 82vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: pop .3s var(--ease); }
.lightbox__cap { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .92rem; padding: 0 20px; }
.lightbox__count { position: absolute; top: 22px; left: 24px; color: rgba(255,255,255,.6); font-size: .9rem; font-family: var(--font-display); }
.lb-btn { position: absolute; z-index: 2; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .2s; }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 18px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 560px) { .lightbox__prev { left: 10px; } .lightbox__next { right: 10px; } .lb-btn { width: 44px; height: 44px; } }

/* Service-detail: feature-card, stats, tags */
.feature-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 100px; }
.svc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-stat { text-align: center; padding: 26px 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.svc-stat b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1; letter-spacing: -.03em;
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.svc-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }

/* Voor/na-slider */
.ba { position: relative; max-width: 820px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 16/10; touch-action: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.ba__handle::before { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow); }
.ba__tag { position: absolute; top: 14px; padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; font-family: var(--font-display); color: #fff; background: rgba(23,16,31,.6); backdrop-filter: blur(4px); }
.ba__tag--before { left: 14px; } .ba__tag--after { right: 14px; }

/* Cases */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case { position: relative; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case__n { display: inline-grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; width: 46px; height: 46px; border-radius: 14px; color: #fff; margin-bottom: 16px; }
.case h3 { font-size: 1.3rem; margin-bottom: .4em; }
.case p { color: var(--ink-2); margin: 0; }

/* Eventplanner-badge */
.footer__badge { display: inline-flex; align-items: center; gap: 14px; margin-top: 20px; padding: 10px 16px 10px 10px; border-radius: 16px; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.footer__badge img { border-radius: 10px; }
.footer__badge strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.footer__badge span { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.footer__badge:hover { box-shadow: var(--shadow-sm); }

/* Footer note + contact-card note */
.footer__note { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 14px; max-width: 30ch; line-height: 1.5; }
.contact-card__note { font-size: .82rem; color: rgba(255,255,255,.62); margin: 12px 0 0; line-height: 1.5; }
.footer__bottom em { font-style: italic; color: rgba(255,255,255,.85); }

/* Modal / popup-bevestiging */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(23,16,31,.6); backdrop-filter: blur(4px); animation: fade .25s var(--ease); }
.modal__card { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg); padding: 44px 36px 34px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow); animation: pop .35s var(--ease); }
.modal__x { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--muted); }
.modal__icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad-lime); color: var(--ink); }
.modal__icon svg { width: 34px; height: 34px; }
.modal.is-error .modal__icon { background: linear-gradient(135deg, #ff5fa2, #e0189a); color: #fff; }
.modal__title { font-size: 1.6rem; margin-bottom: .3em; }
.modal__msg { color: var(--ink-2); margin-bottom: 24px; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.96); } }

/* Footer mobiel + responsive toevoegingen */
.site-footer a { word-break: break-word; }
@media (max-width: 860px) {
  .svc-stats, .cases { grid-template-columns: 1fr; }
  .feature-card { position: static; }
}
@media (max-width: 620px) {
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ba__tag { font-size: .72rem; }
}

/* =====================================================================
   ANPR animatie-uitleg
   ===================================================================== */
.anpr-scene { position: relative; height: 190px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, #2a1140 0%, #17101f 100%); border: 1px solid rgba(255,255,255,.1); margin-bottom: 34px; }
.anpr-road { position: absolute; left: 0; right: 0; bottom: 44px; height: 5px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 26px, transparent 26px 50px); }
.anpr-road::before { content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 22px; background: rgba(255,255,255,.03); }
.anpr-cam { position: absolute; left: 50%; top: 34px; transform: translateX(-50%); width: 56px; height: 56px;
  border-radius: 16px; background: var(--grad-cool); display: grid; place-items: center; color: #fff; z-index: 3; box-shadow: var(--shadow-color); }
.anpr-cam svg { width: 28px; height: 28px; }
.anpr-cam::after { content: ""; position: absolute; bottom: -56px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 56px; background: linear-gradient(rgba(255,255,255,.35), transparent); }
.anpr-car { position: absolute; bottom: 34px; left: -12%; width: 66px; height: 66px; color: var(--lime); z-index: 2;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)); animation: anpr-drive 5s linear infinite; }
.anpr-car svg { width: 100%; height: 100%; }
.anpr-flash { position: absolute; left: 50%; top: 10px; width: 240px; height: 170px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,.9), rgba(255,255,255,0) 62%); opacity: 0; z-index: 2;
  pointer-events: none; animation: anpr-flash 5s linear infinite; }
@keyframes anpr-drive { 0% { left: -12%; } 100% { left: 112%; } }
@keyframes anpr-flash { 0%, 46% { opacity: 0; } 50% { opacity: .95; } 58% { opacity: .25; } 63% { opacity: 0; } 100% { opacity: 0; } }
.anpr-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 0; }
.anpr-steps li { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 24px; }
.anpr-step__ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 14px; }
.anpr-step__ic svg { width: 24px; height: 24px; }
.anpr-step__n { font-family: var(--font-display); font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.anpr-steps p { color: rgba(255,255,255,.85); margin: 6px 0 0; font-size: .95rem; line-height: 1.5; }
@media (max-width: 860px) { .anpr-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .anpr-steps { grid-template-columns: 1fr; } .anpr-scene { height: 160px; } }

/* =====================================================================
   Greenscreen scène — één onderwerp, doorlopende werelden
   ===================================================================== */
.gs-scene { position: relative; max-width: 820px; margin: 0 auto; aspect-ratio: 16/10;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: #0e9a44; border: 6px solid #fff; }
.gs-world { position: absolute; inset: 0; opacity: 0; animation: gsCycle 12s linear infinite; }
.gs-world--green { background: radial-gradient(circle at 50% 42%, #22c85e, #0e9a44 78%); }
.gs-world--green::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(#0e9a44, #0b7d37); }
.gs-world--beach { background: linear-gradient(180deg, #8fd3ff 0%, #d3efff 54%, #f3dfab 54%, #e6c583 100%); }
.gs-world--beach::before { content: ""; position: absolute; top: 14%; right: 16%; width: 70px; height: 70px;
  border-radius: 50%; background: radial-gradient(circle, #fff6c8, #ffd45e 70%); box-shadow: 0 0 46px #ffe08a; }
.gs-world--space { background: radial-gradient(circle at 68% 28%, #4b2e83, #140a26 72%); }
.gs-world--space::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(1.6px 1.6px at 20% 30%, #fff, transparent),
    radial-gradient(1.6px 1.6px at 60% 20%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 80% 55%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 35% 65%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 12% 70%, #fff, transparent),
    radial-gradient(1.3px 1.3px at 88% 78%, #fff, transparent); }
.gs-world--festival { background: linear-gradient(160deg, #7a2bf5 0%, #e0189a 55%, #ff6a1a 100%); }
.gs-world--festival::before { content: ""; position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(105deg, rgba(255,255,255,.25) 0 3px, transparent 3px 40px); }

.gs-flash { position: absolute; inset: 0; background: #fff; opacity: 0; z-index: 6;
  animation: gsFlash 3s linear infinite; pointer-events: none; }

.gs-subject { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  height: 74%; width: auto; fill: #17101f; stroke: #17101f; z-index: 5;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.35)); animation: gsBob 3s ease-in-out infinite; }

.gs-labels { position: absolute; top: 16px; left: 0; right: 0; height: 34px; z-index: 7; text-align: center; }
.gs-label { position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 7px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  background: rgba(23,16,31,.55); color: #fff; backdrop-filter: blur(6px); opacity: 0;
  animation: gsCycle 12s linear infinite; }
.gs-tag { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 7; white-space: nowrap;
  padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .85rem; color: var(--ink);
  background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }

@keyframes gsCycle { 0% { opacity: 0; } 4% { opacity: 1; } 22% { opacity: 1; } 28% { opacity: 0; } 100% { opacity: 0; } }
@keyframes gsFlash { 0%, 88% { opacity: 0; } 94% { opacity: .8; } 100% { opacity: 0; } }
@keyframes gsBob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

@media (max-width: 520px) { .gs-tag, .gs-label { font-size: .78rem; } }

/* Ook deze sier-animatie mag lopen met 'beweging beperken' aan (merkbeleving) */
@media (prefers-reduced-motion: reduce) {
  .gs-world, .gs-label { animation-duration: 12s !important; animation-iteration-count: infinite !important; }
  .gs-flash { animation-duration: 3s !important; animation-iteration-count: infinite !important; }
  .gs-subject { animation: none !important; }
}
