:root{
  --bg: #0b0b0b;
  --offwhite:#e9e4da;
  --line:#3a3a3a;
  --muted:#bfb8aa;
  --white:#ffffff;
  --black:#111111;
  --card:#141414;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --max: 1200px;

  --navH: 72px;
  --scrollOffset: 86px; /* nav + beetje ruimte */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--offwhite);
  line-height: 1.55;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Zorg dat ankernavigatie niet onder nav valt */
[id] { scroll-margin-top: var(--scrollOffset); }

/* Top nav */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease;
}
.nav.scrolled{
  background: rgba(0,0,0,.72);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav-inner{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  height: var(--navH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 180px;
}
.brand img{ height: 90px; width:auto; }

.menu{
  display:flex;
  align-items:center;
  gap: 18px;
}
.menu a{
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(233,228,218,.88);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.menu a:hover{
  background: rgba(255,255,255,.06);
  color: var(--offwhite);
}
/* Active link */
.menu a.active{
  color: var(--offwhite);
  background: rgba(233,228,218,.10);
  border: 1px solid rgba(233,228,218,.18);
}

.cta{ display:flex; align-items:center; gap:12px; }
.btn{
  border: 1px solid rgba(233,228,218,.35);
  background: rgba(233,228,218,.06);
  color: var(--offwhite);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing:.04em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{
  background: rgba(233,228,218,.12);
  border-color: rgba(233,228,218,.55);
  transform: translateY(-1px);
}
.btn.primary{
  background: rgba(233,228,218,.18);
  border-color: rgba(233,228,218,.55);
}

/* =========================
   MOBILE MENU 
========================= */

/* Standaard: verborgen (ook op desktop) */
.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.82);
  position: relative;
  z-index: 60; /* boven hero/video */
}

/* Burger standaard verborgen (desktop) */
.burger{
  display:none;
}

@media (max-width: 920px){
  /* Desktop menu uit op mobiel */
  .menu{ display:none; }

  /* Burger zichtbaar op mobiel */
  .burger{ display:inline-flex; }

  /* Alleen zichtbaar als .open */
  .mobile.open{ display:block; }

  .mobile-inner{
    width:min(var(--max), calc(100% - 40px));
    margin:0 auto;
    padding: 14px 0 18px;
    display:grid;
    gap:10px;
  }

  .mobile a{
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }

  .mobile a.active{
    background: rgba(233,228,218,.10);
    border-color: rgba(233,228,218,.22);
    color: var(--offwhite);
  }
}



/* Hero */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex;
  align-items: stretch;
  padding-top: var(--navH);
}
.hero-media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-media video{
  width:100%; 
  height:100%;
  object-fit:cover;
  filter: contrast(1.08) brightness(.98) saturate(1.10);
  transform: scale(1.02);
}
.hero-overlay{
  position:absolute; 
  inset:0; 
  z-index:1;
  background:
	radial-gradient(1200px 600px at 15% 40%, rgba(0,0,0,.00), rgba(0,0,0,.35)),
	linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.35) 100%);
}
.hero-inner{
  position: relative; z-index:2;
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 64px 0;
  align-items:center;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;

  /* goud -> wit verloop (logo-achtig) */
  background: linear-gradient(90deg,
    #8b6b2b 0%,
    #c9a85c 35%,
    #f3e7c8 65%,
    #ffffff 100%
  );
/*Als je wilt dat het meer goud blijft (minder wit), maak de laatste stop #f6f0df in plaats van #ffffff.*/
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* klein beetje glow voor luxe effect op zwart */
  text-shadow: 0 0 18px rgba(201,168,92,.18);
}

.hero p{
  margin:0 0 22px;
  max-width: 58ch;
  color: rgba(233,228,218,.88);
  font-size: 16px;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; align-items:center; }
.hero-side{ display:flex; justify-content:flex-end; }
.hero-card{
  width:min(420px, 100%);
  background: rgba(15,15,15,.58);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.hero-card strong{display:block;margin-bottom:6px}
.hero-card small{color: rgba(233,228,218,.80)}
@media (max-width: 920px){
  .hero-inner{grid-template-columns:1fr; padding: 52px 0}
  .hero-side{justify-content:flex-start}
}

/* Section base */
section{ padding: 78px 0; }
.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
.line{ height: 1px; background: var(--line); opacity: .9; width:100%; margin: 0; }
.kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(233,228,218,.72);
  margin: 18px 0 10px;
}
.title{
  font-size: clamp(26px, 3.2vw, 40px);
  margin:0 0 18px;
  letter-spacing: -0.02em;
}
.lead{
  color: rgba(233,228,218,.86);
  max-width: 70ch;
  margin:0 0 26px;
}

/* Over ons (dark) */
.overons .grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 48px;
}
.panel{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 10px;font-size:18px;color:var(--offwhite)}
.panel p{margin:0;color:rgba(233,228,218,.86)}
.image-card{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  min-height: 260px;
  background: rgba(255,255,255,.04);
}
.image-card img{width:100%;height:100%;object-fit:cover}
@media (max-width: 920px){ .overons .grid-2{grid-template-columns:1fr} }
/* ===== Lichte variant van Over Ons ===== */

.overons.light {
  background: var(--white);
  color: var(--black);
}

.overons.light .line {
  background: #c9c9c9;
}

.overons.light .kicker {
  color: rgba(0,0,0,.60);
}

.overons.light .title {
  color: #111;
}

.overons.light .panel {
  background: #f6f6f6;
  border: 1px solid #e6e6e6;
}

.overons.light .panel p {
  color: rgba(0,0,0,.72);
}
/* ===== 4 FOTO GRID ===== */

.grid-4-fotos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.foto {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #f4f4f4;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  aspect-ratio: 4 / 3;
  transition: transform .25s ease, box-shadow .25s ease;
}

.foto:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-4-fotos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .grid-4-fotos {
    grid-template-columns: 1fr;
  }
}


/* Fundament (light) */
.fundament{ background: var(--white); color: var(--black); }
.fundament .kicker{color: rgba(0,0,0,.60)}
.fundament .lead{color: rgba(0,0,0,.72)}
.fundament .title{color: #111}
.fundament .line{background: #c9c9c9}

.fundament .block{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
  margin-top: 30px;
}
.fundament .text-box{
  background: #f6f6f6;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  padding: 22px;
}
.fundament .text-box h3{margin:0 0 10px;font-size:18px}
.fundament .text-box p{margin:0;color: rgba(0,0,0,.72)}
.fundament .photo{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid #e6e6e6;
  min-height: 320px;
  background:#f4f4f4;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.fundament .photo img{width:100%;height:100%;object-fit:cover}

/* Swap component (scroll-anim) */
.swap{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid #e6e6e6;
  min-height: 360px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  background:#f4f4f4;
  isolation: isolate;
}
.swap .layer{ position:absolute; inset:0; will-change: opacity, transform; }
.swap .img-layer img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}

/* Text overlay card */
.swap .text-layer{
  display:flex;
  align-items:flex-end;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.05));
  color: #fff;
}
.swap .text-layer .chip{
  width: min(520px, 100%);
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.swap .text-layer h4{margin:0 0 6px;font-size:16px}
.swap .text-layer p{margin:0;color: rgba(255,255,255,.86);font-size:14px}

/* Variant: text-over-image (standaard) */
.swap[data-mode="textOverImage"] .img-layer{ z-index: 1; }
.swap[data-mode="textOverImage"] .text-layer{ z-index: 2; }

/* Variant: image-over-text (we leggen een “paper” text layer onder en image boven) */
.swap[data-mode="imageOverText"] .base-text{
  z-index: 1;
  background: #f6f6f6;
  display:flex;
  align-items:flex-end;
  padding: 18px;
  color: #111;
}
.swap[data-mode="imageOverText"] .base-text .chip{
  width: min(520px, 100%);
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.swap[data-mode="imageOverText"] .top-image{ z-index: 2; }
.swap[data-mode="imageOverText"] .top-image img{ width:100%; height:100%; object-fit:cover; }

/* Reveal */
.reveal{ opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

@media (max-width: 920px){ .fundament .block{grid-template-columns:1fr} }

/* Waarom (dark) */
.waarom .grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.thumb{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  transform: translateY(0);
  transition: transform .25s ease;
}
.thumb:hover{ transform: translateY(-3px); }
.thumb img{width:100%;height:100%;object-fit:cover}
@media (max-width: 980px){ .waarom .grid-4{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 520px){ .waarom .grid-4{grid-template-columns:1fr} }

/* Footer */
footer{
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: #070707;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 22px;
  align-items:start;
}
.footer-grid h5{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,228,218,.70);
}
.footer-grid a, .footer-grid p{
  margin:0;
  color: rgba(233,228,218,.86);
  font-size: 14px;
  line-height: 1.75;
}
.footer-brand img{height:88px}
.subfoot{
  margin-top: 28px;
  color: rgba(233,228,218,.55);
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}
@media (max-width: 920px){ .footer-grid{grid-template-columns:1fr 1fr} }
@media (max-width: 520px){ .footer-grid{grid-template-columns:1fr} }

.grijzeTekst{ color: rgba(233,228,218,.70); }
.fundament .grijzeTekst{ color: rgba(0,0,0,.55); }


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999; /* boven nav/video */
  display: none;
}

.lightbox.open {
  display: block;
}

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

.lightbox-figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  margin: 0;
}

.lightbox-img {
  max-width: min(1100px, calc(100vw - 60px));
  max-height: min(80vh, calc(100vh - 160px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  background: #111;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(233,228,218,.90);
  font-size: 14px;
  text-align: center;
  max-width: 90ch;
}

/* Buttons */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(0,0,0,.70);
  border-color: rgba(255,255,255,.28);
}

/* Mobile: pijlen iets kleiner */
@media (max-width: 520px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-close { width: 40px; height: 40px; }
}
.subtitel {
  display:block;
  font-size:25px;
  margin-bottom:6px;
}
