/* =========================================================
   videograaf-amsterdam.nl
   Landingspagina, dark editorial
   ========================================================= */

:root {
  --bg:        #050810;
  --bg-2:      #080d1c;
  --bg-3:      #0b1226;
  --ink:       #eef3fb;
  --ink-2:     #9aabc7;
  --ink-3:     #64748f;
  --blue:      #2e6bff;
  --blue-2:    #5b93ff;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.18);
  --card:      rgba(255,255,255,.028);
  --card-2:    rgba(255,255,255,.055);
  --r:         18px;
  --r-sm:      12px;
  --maxw:      1180px;
  --f-disp:    'Archivo', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
/* Zonder dit wint het height-attribuut van een img en werkt aspect-ratio niet. */
img { height: auto; }
a { color: inherit; }

::selection { background: var(--blue); color: #fff; }

.skip {
  position: absolute; left: -9999px;
  background: var(--blue); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200;
}
.skip:focus { left: 0; top: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 30px -12px rgba(46,107,255,.9);
}
.btn:hover { background: var(--blue-2); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; fill: currentColor; }

.btn-sm { padding: 9px 17px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-ghost {
  background: rgba(255,255,255,.05);
  border-color: var(--line-2);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,.11); }

/* ---------------- Header ---------------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.hdr.stuck {
  background: rgba(5,8,16,.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 28px; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark { width: 30px; height: 30px; color: var(--blue-2); flex: none; }
.brand-tx {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.028em;
  white-space: nowrap;
}
.brand-tx b { font-weight: 700; color: var(--blue-2); }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 14.5px; color: var(--ink-2); text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hdr .btn-sm { margin-left: 4px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 140px 0 64px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-poster, .hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-vid { opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-vid.on { opacity: 1; }
/* De kop staat op 55% tot 77% vanaf de onderkant en de eyebrow op 79%.
   Daar moet de scrim dus donker blijven, ook als er een lichte lucht
   voorbijkomt in de reel. Rechtsboven blijft hij open zodat je het beeld ziet. */
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5,8,16,.55), rgba(5,8,16,.18) 55%, rgba(5,8,16,0) 82%),
    linear-gradient(to top,
      var(--bg) 2%,
      rgba(5,8,16,.88) 20%,
      rgba(5,8,16,.82) 55%,
      rgba(5,8,16,.66) 85%,
      rgba(5,8,16,.55) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(46,107,255,.20), transparent 60%);
}

.hero-in { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #35d17b;
  box-shadow: 0 0 0 0 rgba(53,209,123,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(53,209,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,209,123,0); }
}

h1 {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(42px, 7.4vw, 92px);
  line-height: .95;
  letter-spacing: -.038em;
  margin-bottom: 24px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(96deg, var(--blue-2), #a9c6ff 55%, var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 46ch;
  color: var(--ink-2);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  margin-bottom: 34px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }

.usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.usp li {
  background: rgba(5,8,16,.6);
  backdrop-filter: blur(14px);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 3px;
}
.usp b {
  font-family: var(--f-disp); font-weight: 600;
  font-size: 15.5px; letter-spacing: -.015em;
}
.usp span { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }

/* ---------------- Trusted partner / logo-draaibalk ---------------- */
.clients {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.clients-head { text-align: center; margin-bottom: 28px; }

.sterren {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.sterren span {
  color: #ffc248;
  font-size: 15px;
  letter-spacing: .12em;
}
.clients-sub { margin-top: 8px; color: var(--ink-3); font-size: 13.5px; }

.marquee {
  position: relative;
  overflow: hidden;
  /* Randen laten uitvloeien zodat logos niet hard afgekapt de balk in schuiven */
  -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;
  /* De breedte wordt door script.js in pixels vastgezet zodra de logos
     geladen zijn. Zonder dat blijft iOS Safari op een verouderde
     max-content hangen en valt de helft van de balk weg. */
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.logo-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
  flex-shrink: 0;
}
.logo-cell {
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transform: translate3d(0, 0, 0);
}
.logo-cell img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: .72;
  /* Alles wit maken, zodat merkkleuren de pagina niet uit elkaar trekken */
  filter: brightness(0) invert(1);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.logo-cell:hover img { opacity: 1; transform: scale(1.06); }

/* Deze twee hebben veel loze ruimte in het bestand, dus iets opschalen. */
.logo-lijpe img { transform: scale(1.22); }
.logo-lijpe:hover img { transform: scale(1.29); }
.logo-knvb img { transform: scale(1.18); }
.logo-knvb:hover img { transform: scale(1.25); }
.logo-crystalpalace img { transform: scale(1.24); }
/* Enfusion is een brede wordmark en gaat anders alle andere logos overheersen. */
.logo-enfusion img { max-width: 150px; }
.logo-dominos img { max-width: 175px; }
/* Packrats en Residences Suites Nador zijn brede lockups: meer ruimte,
   en iets kleiner in hoogte zodat ze niet over de rest heen walsen. */
.logo-packrats img { max-width: 260px; height: 34px; }
.logo-nador img    { max-width: 260px; height: 32px; }
.logo-crystalpalace:hover img { transform: scale(1.31); }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  /* --row-w zet script.js op de pixelbreedte van een rij. De track bevat
     twee identieke rijen, dus precies een rij opschuiven loopt naadloos rond. */
  to   { transform: translate3d(calc(-1 * var(--row-w, 50%)), 0, 0); }
}

/* ---------------- Sections ---------------- */
.sec { padding: clamp(72px, 10vw, 128px) 0; }
.sec-alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.sec-hd { margin-bottom: 56px; max-width: 640px; }
.num {
  font-family: var(--f-disp);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em;
  color: var(--blue-2);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.032em;
  margin-bottom: 16px;
}
h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.018em;
  margin-bottom: 8px;
}
.sub { color: var(--ink-2); font-size: 16.5px; }
.sub a { color: var(--blue-2); text-decoration-color: rgba(91,147,255,.4); text-underline-offset: 3px; }

/* ---------------- Diensten ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 0 26px;
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.card:hover {
  background: var(--card-2);
  border-color: var(--line-2);
  transform: translateY(-4px);
}
.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.card-media video { width: 100%; height: 100%; object-fit: cover; }
.card h3, .card p, .card .ticks { padding-inline: 24px; }
.card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

.ticks { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.ticks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-3);
}
.ticks li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--blue-2);
  border-bottom: 1.5px solid var(--blue-2);
  transform: rotate(-45deg);
}

/* ---------------- Werk ---------------- */
.reel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reel-item {
  position: relative;
  aspect-ratio: 9 / 14;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  padding: 0;
  transition: transform .35s var(--ease), border-color .3s;
}
.reel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.reel-item:hover { border-color: var(--line-2); transform: translateY(-4px); }
.reel-item:hover img { transform: scale(1.06); opacity: .85; }

.play {
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  transition: background .25s, transform .25s var(--ease);
}
.play::after {
  content: '';
  position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-left: 13px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateX(2px);
}
.reel-item:hover .play { background: var(--blue); transform: scale(1.1); }

.reel-tag {
  position: absolute; left: 12px; bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5,8,16,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-family: var(--f-disp);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ---------------- Steps ---------------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.steps li {
  border-top: 1px solid var(--line-2);
  padding-top: 26px;
  position: relative;
}
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue-2);
  font-family: var(--f-disp); font-weight: 700; font-size: 15px;
  margin-bottom: 18px;
}
.steps p { color: var(--ink-2); font-size: 15px; }

/* ---------------- Waarom ---------------- */
.two { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.two-tx .btn { margin-top: 26px; }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.why > div { background: var(--bg-2); padding: 28px 26px; }
.why p { color: var(--ink-2); font-size: 14.5px; }

/* ---------------- Tarieven ---------------- */
.tarieven { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.tarief {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 30px 32px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.tarief:hover { background: var(--card-2); border-color: var(--line-2); }
.tarief h3 { color: var(--ink-2); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.tarief p { color: var(--ink-2); font-size: 15px; max-width: 44ch; }

.bedrag {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink) !important;
  margin-bottom: 16px;
}
.bedrag span {
  font-weight: 500;
  font-size: .42em;
  letter-spacing: 0;
  color: var(--ink-3);
  padding: 0 4px;
  vertical-align: middle;
}

.extras {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.extras li {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--card);
}
.extras svg { grid-row: 1 / 3; width: 22px; height: 22px; fill: var(--blue-2); }
.extras b { font-family: var(--f-disp); font-weight: 600; font-size: 15.5px; letter-spacing: -.015em; }
.extras span { font-size: 14px; color: var(--ink-3); }

.tarief-noot {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue);
  border-radius: var(--r-sm);
  background: rgba(46,107,255,.05);
  color: var(--ink-2);
  font-size: 14.5px;
  max-width: 80ch;
}

/* ---------------- Over mij ---------------- */
.over { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }

.over-fotos { display: grid; gap: 14px; }

.over-foto {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
}
/* Vaste kaders, zodat een andere uitsnede de bladspiegel niet omgooit
   als je de fotos straks vervangt. */
/* Allebei vierkant en dus even groot. De staande foto is al op 900x900
   bijgesneden in het bestand zelf, de montagefoto was al vierkant. */
.over-foto img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.over-foto figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5,8,16,.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  font-family: var(--f-disp);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink);
}

.over-tx > p { color: var(--ink-2); font-size: 16.5px; margin-bottom: 16px; max-width: 62ch; }
.over-tx > p:first-of-type { color: var(--ink); font-size: 18px; }

.cijfers {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.cijfers > div { background: var(--bg-2); padding: 16px 22px; }
.cijfers dt {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--blue-2);
  white-space: nowrap;
}
.cijfers dd { margin: 0; font-size: 13px; color: var(--ink-3); }

.pijlers { list-style: none; display: grid; gap: 14px; margin-top: 6px; }
.pijlers li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.pijlers b {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.015em;
}
.pijlers span { color: var(--ink-2); font-size: 14.5px; }

/* ---------------- Werkgebied ---------------- */
.places {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.places li {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 14.5px;
  color: var(--ink-2);
  transition: border-color .25s, color .25s, background .25s;
}
.places li:hover { border-color: var(--line-2); color: var(--ink); background: var(--card-2); }

/* ---------------- FAQ ---------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.015em;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-2); }
.faq summary::after,
.faq summary::before {
  content: '';
  position: absolute; right: 6px; top: 50%;
  background: var(--ink-2);
  transition: transform .3s var(--ease), background .2s;
}
.faq summary::before { width: 15px; height: 1.5px; margin-top: -.75px; }
.faq summary::after  { width: 1.5px; height: 15px; margin-top: -7.5px; right: 12.75px; }
.faq details[open] summary::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--blue-2); }
.faq details p {
  color: var(--ink-2);
  font-size: 15.5px;
  padding-bottom: 24px;
  max-width: 62ch;
}

/* ---------------- Formulier ---------------- */
.offerte { background: var(--bg-2); border-top: 1px solid var(--line); }
.form { display: grid; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 7px; }
.form label > span {
  font-family: var(--f-disp);
  font-size: 13px; font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-2);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15.5px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form textarea { resize: vertical; min-height: 108px; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.form select option { background: var(--bg-2); color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(46,107,255,.06);
  box-shadow: 0 0 0 3px rgba(46,107,255,.15);
}
.form input.err, .form textarea.err { border-color: #ff5a5a; }
.f-note { font-size: 13px; color: var(--ink-3); text-align: center; }
.form .btn { margin-top: 6px; }

/* ---------------- Footer ---------------- */
.ftr { border-top: 1px solid var(--line); padding: 48px 0 110px; }
.ftr-in { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.ftr-brand { display: flex; align-items: center; gap: 12px; }
.ftr-brand .mark { width: 32px; height: 32px; }
.ftr-brand div { display: flex; flex-direction: column; line-height: 1.35; }
.ftr-brand b { font-family: var(--f-disp); font-size: 15px; letter-spacing: -.02em; }
.ftr-brand span { font-size: 13.5px; color: var(--ink-3); }
.ftr-links { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.ftr-links a { font-size: 14.5px; color: var(--ink-2); text-decoration: none; transition: color .2s; }
.ftr-links a:hover { color: var(--blue-2); }
.ftr-legal { width: 100%; font-size: 13px; color: var(--ink-3); padding-top: 22px; border-top: 1px solid var(--line); }

/* ---------------- Mobiele balk ---------------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5,8,16,.9);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}
.bar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.06);
}
.bar a.bar-wa { background: var(--blue); border-color: transparent; }

/* ---------------- Lightbox ---------------- */
.lb {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,5,12,.94);
  backdrop-filter: blur(10px);
  padding: 24px;
  animation: fade .3s var(--ease);
}
.lb[hidden] { display: none; }
@keyframes fade { from { opacity: 0 } }
/* Werkt voor staande clips en voor de liggende showreel: de hoogte begrenst
   staande video, de breedte begrenst liggende. */
.lb video { max-width: min(100%, 1000px); max-height: 86vh; border-radius: var(--r); }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 26px; line-height: 1;
  cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.15); }

/* ---------------- Reveal ---------------- */
.rv { opacity: 0; transform: translateY(22px); }
.rv.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .two { grid-template-columns: 1fr; gap: 36px; }
  .reel { grid-template-columns: repeat(2, 1fr); }
  .tarieven { grid-template-columns: 1fr; }
  .extras { grid-template-columns: 1fr; gap: 12px; }
  .over { grid-template-columns: 1fr; gap: 32px; }
  .over-fotos { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .hdr .btn-sm { margin-left: auto; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .usp { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .bar { display: flex; }
  .ftr { padding-bottom: 130px; }
  .hero { min-height: 92svh; padding-top: 120px; }
  .cta-row .btn { flex: 1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .why { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .cijfers { grid-template-columns: 1fr 1fr; width: 100%; }
  /* Onder elkaar kosten de fotos 750px hoogte voor je bij de tekst bent.
     Naast elkaar als tweeluik is compacter en leest net zo goed. */
  .over-fotos { grid-template-columns: 1fr 1fr; gap: 10px; }
  .marquee-track { animation-duration: 22s; }
  .logo-row { gap: 40px; padding: 0 20px; }
  .logo-cell { height: 52px; }
  .logo-cell img { height: 34px; }
  .over-foto figcaption { left: 8px; bottom: 8px; padding: 4px 9px; font-size: 10px; }
  .pijlers li { grid-template-columns: 1fr; gap: 3px; }
  /* Woordmerk blijft staan, het telefoonnummer wordt een icoonknop.
     De vaste balk onderin heeft de belknop toch al voluit. */
  .brand-tx { font-size: 14.5px; }
  .mark { width: 26px; height: 26px; }
  .tel-tx { display: none; }
  .hdr .btn-sm { padding: 9px 11px; }
  .hdr .btn-sm svg { width: 18px; height: 18px; }
  .ftr-links { margin-left: 0; gap: 16px; }
  .ftr-brand b { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}
