:root{
  --bg:#0b0e14;
  --panel:#111826;
  --text:#eaf0ff;
  --muted:#9aa6bf;
  --line:rgba(255,255,255,.10);
  --shadow:0 14px 40px rgba(0,0,0,.45);
  --r:18px;

  /* rood accent */
  --accent:#ff2b2b;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 450px at 15% 10%, rgba(255,43,43,.18), transparent 55%),
    radial-gradient(900px 450px at 85% 15%, rgba(255,120,120,.12), transparent 60%),
    radial-gradient(900px 450px at 60% 90%, rgba(100,140,255,.10), transparent 60%),
    var(--bg);
}

a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* HEADER */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(10,12,18,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.navbar{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex; flex-direction:column; gap:2px;
  text-decoration:none;
}
.brand strong{letter-spacing:.2px}
.brand span{font-size:12px;color:var(--muted)}

.burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
}
.burger span{display:block;height:2px;background:currentColor;margin:7px 12px;border-radius:99px}

.nav{
  display:flex; gap:10px; align-items:center;
}
.nav a, .nav button{
  text-decoration:none;
  border:1px solid transparent;
  background:transparent;
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
}
.nav a:hover, .nav button:hover{
  border-color:var(--line);
  background:rgba(255,255,255,.04);
}
.nav a.active{
  border-color: rgba(255,43,43,.35);
  background: rgba(255,43,43,.12);
}

/* HERO */
.hero{
  padding:78px 0 44px;
  border-bottom:1px solid var(--line);
}
.kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 12px;
}
.h1{
  font-size:44px;
  line-height:1.05;
  margin:0 0 14px;
}
.accent{color:var(--accent)}
.lead{color:var(--muted);max-width:70ch;margin:0 0 22px}

.cta{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  text-decoration:none;
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,43,43,.35);
  background: rgba(255,43,43,.14);
  color:var(--text);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,43,43,.55);
  background:rgba(255,43,43,.18);
}
.btn.ghost{
  border-color:var(--line);
  background: rgba(255,255,255,.04);
}
.btn.ghost:hover{background: rgba(255,255,255,.06)}

/* SECTIONS */
.section{
  padding:56px 0;
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.h2{font-size:30px;margin:0}
.p{margin:0;color:var(--muted);max-width:85ch}

.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.card{
  grid-column: span 6;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color: rgba(255,43,43,.22);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}

/* FOTO'S (nieuw) */
.section-foot{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}

.work{
  grid-column: span 6;
  margin:0;
  border-radius: var(--r);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.work:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color: rgba(255,43,43,.22);
}

.work-media{
  width:100%;
  height:320px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  display:block;
}

.work-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1);
  transition: transform .35s ease;
}

.work:hover .work-media img{transform:scale(1.04)}

.work-cap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px 16px;
}

.work-cap strong{display:block;font-weight:700}
.work-cap span{display:block;color:var(--muted);font-size:13px;margin-top:4px}

.chip{
  flex:0 0 auto;
  font-size:12px;
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,43,43,.30);
  background: rgba(255,43,43,.10);
  color:var(--text);
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.lightbox.open{display:block}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
}

.lightbox-panel{
  position:relative;
  max-width: 980px;
  margin: 7vh auto;
  border-radius: calc(var(--r) + 6px);
  border:1px solid var(--line);
  background: rgba(12,14,20,.92);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;
  height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,43,43,.40);
  background: rgba(255,43,43,.12);
  color:var(--text);
  cursor:pointer;
  box-shadow: 0 0 12px rgba(255,43,43,.25);
  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.lightbox-close:hover{
  background: rgba(255,43,43,.22);
  border-color: rgba(255,43,43,.65);
  box-shadow: 0 0 20px rgba(255,43,43,.45);
}

.lightbox-prev,
.lightbox-next{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  z-index:101;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  color:var(--text);
  cursor:pointer;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .15s ease, border-color .15s ease;
}
.lightbox-prev{ left:16px; }
.lightbox-next{ right:16px; }
.lightbox-prev:hover,
.lightbox-next:hover{
  background: rgba(255,43,43,.18);
  border-color: rgba(255,43,43,.45);
}

.lightbox-img{
  width:100%;
  height:auto;
  max-height:82vh;
  object-fit:cover;
  display:block;
}

.lightbox-meta{padding:14px 16px 18px;border-top:1px solid var(--line)}
.lightbox-title{margin:0 0 4px;font-weight:700}
.lightbox-sub{margin:0;color:var(--muted)}

/* CONTACT */
.contact-grid .box{
  grid-column: span 6;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:18px;
}
.list{list-style:none;padding:0;margin:0;display:grid;gap:8px}
label{display:grid;gap:6px;margin-top:10px}

/* ✅ Belangrijk: select toegevoegd zodat dropdown hetzelfde oogt */
input, textarea, select{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.20);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}

input:focus, textarea:focus, select:focus{
  border-color: rgba(255,43,43,.45);
}

/* FOOTER */
.footer{padding:26px 0}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
  color:var(--muted);
}
.footer a{color:var(--text);text-decoration:none}

/* MOBILE */
@media (max-width: 880px){
  .burger{display:inline-block}
  .nav{
    display:none;
    position:absolute;
    top:72px; left:0; right:0;
    background: rgba(10,12,18,.96);
    border-bottom:1px solid var(--line);
    padding:10px;
    flex-direction:column;
    align-items:stretch;
  }
  .nav.open{display:flex}
  .h1{font-size:36px}
  .card{grid-column: span 12}
  .photo{grid-column: span 12}
  .work{grid-column: span 12}
  .work-media{height:260px}
  .contact-grid .box{grid-column: span 12}

  .lightbox-prev,
  .lightbox-next{
    top:auto;
    bottom:80px;
    transform:none;
  }
  .lightbox-prev{ left:calc(50% - 56px); }
  .lightbox-next{ right:calc(50% - 56px); }
}
