:root{
  --bg: #f1eeea;
  --fg: #111;
  --muted: rgba(0,0,0,.6);
  --hair: rgba(0,0,0,.14);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Avenir Next World", "Avenir Next", Avenir, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
}

/* --- Header (transparent overlay) --- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  pointer-events: none; /* zodat video niet “dead” voelt */
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}
.logo{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .6px;
  transition: color .28s ease;
}
.nav a{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
  transition: color .28s ease;
}
.nav a:hover{ color: #fff; }

/* Header state after hero */
body.header--solid .site-header{
  background: transparent;
  box-shadow: none;
}
body.header--solid .logo{
  color: #111;
}
body.header--solid .nav a{
  color: rgba(0,0,0,.6);
}
body.header--solid .nav a:hover{
  color: #111;
}

.contact-body{
  --header-split: 46%;
}
.contact-body .logo,
.contact-body .nav a{
  color: transparent;
  background-image: linear-gradient(
    90deg,
    #111 0%,
    #111 var(--header-split),
    #fff var(--header-split),
    #fff 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 100vw 100%;
  background-position: left top;
  background-attachment: fixed;
}

/* --- Hero --- */
.hero{
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--bg);
}
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 20px 30px;
}
.hero__content{
  width: min(1100px, 100%);
}
.hero__title{
  margin: 0;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.6px;
  text-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Scroll indicator */
.hero__scroll{
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  color: var(--bg);
  display: grid;
  gap: 6px;
  place-items: center;
  cursor: pointer;
  padding: 10px 14px;
}
.hero__arrow{
  font-size: 18px;
  line-height: 1;
  opacity: .9;
  animation: bob 1.4s ease-in-out infinite;
}
.hero__scrolltext{
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(6px); }
}

/* --- Statement --- */
.statement{
  background: #0c1d33;
  color: #f2f5f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}
.statement__inner{
  max-width: 900px;
  margin: 0 auto;
}
.statement p{
  margin: 0;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.statement__line{
  display: block;
  transition: color .12s linear;
}
.statement__cta{
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--solid{
  background: var(--bg);
  color: #0c1d33;
  border: 1px solid #fff;
}
.btn--solid:hover{
  transform: translateY(-1px);
}
.btn--outline{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.85);
}
.btn--outline:hover{
  transform: translateY(-1px);
  border-color: #fff;
}

/* --- Contact --- */
.contact-page{
  background: var(--bg);
}
.contact{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  min-height: 100vh;
}
.contact__left{
  padding: 140px 50px 90px;
  color: #0c1d33;
  display: grid;
  gap: 18px;
  align-content: start;
}
.contact__title{
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.4px;
}
.contact__lead{
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
  color: rgba(12,29,51,.72);
}
.contact__details{
  margin-top: 20px;
  display: grid;
  gap: 22px;
}
.contact__detail{
  display: grid;
  gap: 6px;
}
.contact__label{
  margin: 0;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(12,29,51,.6);
}
.contact__value{
  margin: 0;
  font-size: 18px;
  letter-spacing: .2px;
  color: rgba(12,29,51,.85);
}
.contact__detail a.contact__value{
  text-decoration: none;
}
.contact__detail a.contact__value:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact__map{
  margin-top: 10px;
  color: rgba(12,29,51,.7);
}
.contact__map svg{
  width: 220px;
  height: auto;
  display: block;
}
.contact__map--dots{
  color: rgba(12,29,51,.65);
}
.contact__map--dots text{
  fill: currentColor;
  letter-spacing: .6px;
}
.contact__right{
  background: #0c1d33;
  color: #f2f5f8;
  padding: 140px 60px 90px;
  display: grid;
  gap: 26px;
  align-content: center;
}
.contact__form-title{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.3px;
}
.contact-form{
  width: 100%;
  display: grid;
  gap: 28px;
}
.sentence{
  display: grid;
  gap: 18px;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.5;
}
.sentence__line{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}
.sentence__line--stack{
  align-items: center;
}
.sentence__field{
  display: inline-flex;
  min-width: min(360px, 60vw);
  border-bottom: 2px dotted rgba(255,255,255,.35);
}
.sentence__field--short{
  min-width: min(200px, 50vw);
}
.sentence__field input{
  flex: 1;
  border: 0;
  background: transparent;
  padding: 4px 2px 6px;
  color: #fff;
  font-size: 1em;
  outline: none;
}
.sentence__field input::placeholder{
  color: rgba(255,255,255,.4);
}
.choice-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.choice{
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.choice input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice span{
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.choice input:checked + span{
  background: #fff;
  color: #0c1d33;
  border-color: #fff;
}
.contact-form__footer{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-form__note{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}


/* --- About --- */
.about{
  padding: 90px 20px;
  color: #0c1d33;
}
.about__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
}
.about h2{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: .2px;
}
.about p{
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.6;
  font-size: 16px;
}
.about__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--hair);
}

/* --- Footer --- */
.site-footer{
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: var(--bg);
  color: #111;
  display: grid;
  align-content: center;
  gap: 56px;
}
.site-footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 38px 28px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  justify-items: center;
  text-align: center;
}
.footer-cta{
  grid-column: 1 / -1;
  max-width: 760px;
  text-align: center;
}
.footer-cta h2{
  margin: 0 0 16px;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.6px;
}
.footer-cta p{
  margin: 0 0 24px;
  color: rgba(0,0,0,.7);
  line-height: 1.6;
}
.footer-left p,
.footer-services p{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .4px;
}
.footer-left,
.footer-right,
.footer-services,
.footer-links{
  padding-top: 0;
  border-top: 0;
}
.footer-services p{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.site-footer__bottom{
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,.7);
  border-top: 1px solid var(--hair);
  padding-top: 18px;
}
.footer-bottom__left,
.footer-bottom__right{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bottom__right{
  justify-content: flex-end;
}
.footer-bottom__center{
  text-align: center;
}
.site-footer .btn--solid{
  background: #111;
  border-color: #111;
  color: #fff;
}
.footer-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(0,0,0,.6);
  margin-bottom: 8px;
}
.site-footer a{
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  opacity: 1;
  transition: opacity .2s ease;
}
.site-footer a:hover{ opacity: .7; }

/* --- Cases --- */
.cases-page{
  background: #f1eeea;
  color: var(--fg);
}
.cases-hero{
  padding: 150px 20px 80px;
  background: #0c1d33;
  color: #f2f5f8;
}
.cases-hero__inner{
  max-width: 1100px;
  margin: 0 auto;
}
.cases-hero__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.cases-hero__title{
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.4px;
}
.cases-hero__lede{
  margin: 0 0 24px;
  max-width: 620px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}
.cases-search{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 10px 18px;
  max-width: 520px;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.cases-search__label{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.cases-search__input{
  border: 0;
  background: transparent;
  font-size: 15px;
  outline: none;
  color: #fff;
}
.cases-search__input::placeholder{
  color: rgba(255,255,255,.55);
}
.case-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.case-tag{
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
}
.case-tag--active{
  background: #fff;
  color: #0c1d33;
  border-color: #fff;
}
.cases-grid{
  padding: 60px 20px 120px;
  display: grid;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.case-card{
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--hair);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.case-frame{
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(0,0,0,.08)),
    radial-gradient(120% 120% at 0% 0%, rgba(0,0,0,.15), transparent 60%),
    #e6ded6;
}
.case-frame::after{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.case-frame__label{
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
}
.case-frame--dark{
  background:
    linear-gradient(120deg, rgba(255,255,255,.1), rgba(0,0,0,.45)),
    #2b2b2b;
}
.case-frame--warm{
  background:
    linear-gradient(140deg, rgba(255,255,255,.3), rgba(0,0,0,.15)),
    #d8a47f;
}
.case-frame--cool{
  background:
    linear-gradient(140deg, rgba(255,255,255,.2), rgba(0,0,0,.2)),
    #9ab6c8;
}
.case-frame--mono{
  background:
    linear-gradient(140deg, rgba(255,255,255,.15), rgba(0,0,0,.25)),
    #bcbcbc;
}
.case-frame--neutral{
  background:
    linear-gradient(140deg, rgba(255,255,255,.2), rgba(0,0,0,.2)),
    #cdbda8;
}
.case-card__body{
  padding: 18px 18px 22px;
  display: grid;
  gap: 10px;
}
.case-card__kicker{
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.case-card__title{
  margin: 0;
  font-size: 20px;
  letter-spacing: .2px;
}
.case-card__desc{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.case-card__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-card__tags span{
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: #f2f2f2;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--hair);
}

.cases-soon{
  padding: 90px 20px 140px;
}
.cases-soon__inner{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cases-soon__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
}
.cases-soon h2{
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.5px;
}
.cases-soon p{
  margin: 0 0 24px;
  color: rgba(0,0,0,.7);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 860px){
  .about__inner{ grid-template-columns: 1fr; }
  .nav a{ margin-left: 12px; }
  .cases-hero{ padding-top: 120px; }
  .cases-search{
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .contact{
    grid-template-columns: 1fr;
  }
  .contact__left,
  .contact__right{
    padding: 120px 26px 70px;
  }
  .sentence__field{
    min-width: min(100%, 100vw);
  }
  .sentence__field--short{
    min-width: min(100%, 100vw);
  }
  .site-footer__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer__bottom{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
/* The WE DO section (onder hero) */
.we-do-section {
  position: relative;
  height: 190vh;
  background: var(--bg);
}

/* sticky area die “pinned” blijft tijdens scroll binnen de section */
.we-do-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

/* frame look (kan je aanpassen naar jouw design) */
.we-do-frame {
  width: min(1200px, 94vw);
  height: min(72vh, 640px);
  position: relative;
  border-radius: 32px;
  background: #f1eeea;
  overflow: visible;
}

.we-do-words {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.we, .do {
  position: absolute;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 1;
  text-transform: uppercase;
  opacity: 1;
  color: rgba(55, 52, 50, 0.25);
  will-change: transform, opacity;
}

/* start: gecentreerd WE DO */
.we { left: 50%; transform: translateX(-105%); }
.do { left: 50%; transform: translateX(5%); }

/* list komt van onder naar midden */
.stack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 120%);
  width: min(520px, 84vw);
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
}

.stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.stack li {
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2f2b2a;
}
