/* ============================================================
   VILTR — homepage redesign
   Instrument Serif (display) + Google Sans (body)
   Petrol-green / orange / warm-grey family · elevated
   Themeable: body.theme-dark | body.theme-light
   ============================================================ */

@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-BoldItalic.ttf") format("truetype");
  font-weight: 700; font-style: italic; font-display: swap;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Google Sans", system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .4s ease, color .4s ease;
}

/* ---------- THEME TOKENS ----------
   Family: petrol green surfaces · warm paper · brand orange · greens. */
body.theme-dark {
  --bg:       #143029;
  --bg-2:     #1b3b33;
  --fg:       #f0ede2;
  --muted:    #9caea5;
  --faint:    #687a72;
  --line:     rgba(240,237,226,.14);
  --line-2:   rgba(240,237,226,.07);
  --accent:   #e76d24;
  --accent-soft: rgba(231,109,36,.16);
  --green:    #3a9b78;
  --on-accent: #fbfaf4;
  --shadow:   0 30px 80px -40px rgba(0,0,0,.7);
}

body.theme-light {
  --bg:       #f2efe6;
  --bg-2:     #fbfaf4;
  --fg:       #15332c;
  --muted:    #59665f;
  --faint:    #9aa39b;
  --line:     rgba(21,51,44,.14);
  --line-2:   rgba(21,51,44,.07);
  --accent:   #df6620;
  --accent-soft: rgba(223,102,32,.12);
  --green:    #1f7a5e;
  --on-accent: #fbfaf4;
  --shadow:   0 30px 80px -45px rgba(21,51,44,.28);
}

/* ---------- INVERT ISLANDS ----------
   Dark theme (predominantly dark): only the webshop band turns light.
   Light theme (mostly light): hero + contact turn dramatic dark. */
.theme-dark [data-section="webshop"] {
  --bg:    #f2efe6;
  --bg-2:  #fbfaf4;
  --fg:    #15332c;
  --muted: #59665f;
  --faint: #9aa39b;
  --line:  rgba(21,51,44,.14);
  --line-2:rgba(21,51,44,.07);
  --accent-soft: rgba(223,102,32,.12);
  --green: #1f7a5e;
  background: var(--bg);
  color: var(--fg);
}
.theme-light header,
.theme-light [data-section="hero"],
.theme-light [data-section="webshop"],
.theme-light [data-section="contact"] {
  --bg:    #143029;
  --bg-2:  #1b3b33;
  --fg:    #f0ede2;
  --muted: #9caea5;
  --faint: #687a72;
  --line:  rgba(240,237,226,.14);
  --line-2:rgba(240,237,226,.07);
  --accent: #e76d24;
  --accent-soft: rgba(231,109,36,.18);
  --green: #3a9b78;
  background: var(--bg);
  color: var(--fg);
}

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}
section { position: relative; }
.band { padding: 132px 0; }
.band--tight { padding: 96px 0; }

/* ---------- TYPE ---------- */
.serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }

h1, h2, h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; margin: 0; }

.display {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(52px, 5.7vw, 92px);
  line-height: 1.0;
  letter-spacing: -.012em;
  text-wrap: balance;
}
.h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.08;
}
.lede {
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
  max-width: 56ch;
  text-wrap: pretty;
}
p { margin: 0; text-wrap: pretty; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 14px; height: 14px; flex: none;
  background: var(--accent);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  animation: vtwinkle 4.5s ease-in-out infinite;
}
.eyebrow::after {
  content: "";
  width: 24px; height: 1px; flex: none;
  background: currentColor; opacity: .32;
}
.eyebrow--dot::before {
  width: 7px; height: 7px; border-radius: 50%;
  clip-path: none; animation: none;
  background: var(--accent);
}
.eyebrow--dot::after { display: none; }
@keyframes vtwinkle {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50%      { transform: rotate(90deg) scale(.66); opacity: .55; }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow::before { animation: none; }
}

em, .italic { font-style: italic; }
.accent-text { color: var(--accent); font-style: italic; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Google Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn--accent { background: var(--accent); color: var(--on-accent); }
.btn--accent:hover { transform: translateY(-2px); filter: brightness(1.04); }

.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 500; font-size: 14.5px; color: var(--fg);
  text-decoration: none; border-bottom: 1px solid transparent;
  padding-bottom: 2px; transition: gap .25s ease, border-color .25s ease;
}
.link-arrow:hover { gap: 14px; border-color: var(--accent); }
.link-arrow .arr { color: var(--accent); }

/* ---------- NAV ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 30px 56px;
  max-width: 1240px; margin: 0 auto;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo svg { width: 72px; height: auto; display: block; transition: width .25s cubic-bezier(.2,.7,.2,1); }
.nav__logo svg path, .nav__logo svg circle { fill: var(--fg); }
.nav__links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-size: 14.5px; font-weight: 400; color: var(--fg);
  text-decoration: none; opacity: .82; transition: opacity .2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; width: 100%; background: var(--fg); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav {
  position: fixed; inset: 0; z-index: 90;
  background: #143029; color: #f3efe6;
  display: flex; flex-direction: column;
  padding: 22px 26px calc(26px + env(safe-area-inset-bottom, 0px));
  opacity: 0; visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: opacity .3s ease, visibility .3s ease, clip-path .55s cubic-bezier(.76,0,.24,1);
}
.mnav.open { opacity: 1; visibility: visible; clip-path: inset(0 0 0% 0); }
.mnav__top { display: flex; align-items: center; justify-content: space-between; min-height: 44px; }
.mnav__label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,239,230,.55); }
.mnav__close {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243,239,230,.08); border: 1px solid rgba(243,239,230,.22); color: #f3efe6;
  transition: background .25s ease, transform .25s ease;
}
.mnav__close svg { width: 18px; height: 18px; }
.mnav__close:active { transform: scale(.92); background: rgba(243,239,230,.16); }
.mnav__links { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.mnav__links a {
  position: relative; display: flex; align-items: baseline; gap: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 9vw, 46px); line-height: 1.15;
  color: #f3efe6; text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(243,239,230,.14);
  opacity: 0; transform: translateY(22px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1), color .2s ease;
}
.mnav__links a:first-child { border-top: 1px solid rgba(243,239,230,.14); }
.mnav__links a:active { color: var(--accent); }
.mnav__num {
  font-family: inherit; font-size: 14px; color: var(--accent);
  min-width: 24px; transform: translateY(-8px);
}
.mnav__links .ext { width: 14px; height: 14px; margin-left: 6px; opacity: .6; align-self: center; }
.mnav.open .mnav__links a { opacity: 1; transform: none; }
.mnav.open .mnav__links a:nth-child(1){transition-delay:.12s}
.mnav.open .mnav__links a:nth-child(2){transition-delay:.18s}
.mnav.open .mnav__links a:nth-child(3){transition-delay:.24s}
.mnav.open .mnav__links a:nth-child(4){transition-delay:.30s}
.mnav.open .mnav__links a:nth-child(5){transition-delay:.36s}
.mnav__foot { display: grid; gap: 18px; padding-top: 24px; opacity: 0; transform: translateY(16px); transition: opacity .45s ease .42s, transform .45s cubic-bezier(.22,1,.36,1) .42s; }
.mnav.open .mnav__foot { opacity: 1; transform: none; }
.mnav__cta { justify-content: center; }
.mnav__tel { font-family: "Instrument Serif", Georgia, serif; font-size: clamp(28px, 7.5vw, 38px); line-height: 1; color: #f3efe6; text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 5px; justify-self: start; }
.mnav__contact { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.mnav__contact span { font-size: 14px; color: rgba(243,239,230,.6); }
.mnav__contact a { font-size: 15px; color: rgba(243,239,230,.75); text-decoration: none; border-bottom: 1px solid rgba(243,239,230,.25); padding-bottom: 2px; }
body.mnav-open { overflow: hidden; }
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn { display: none; }
}

/* ---------- IMAGE SLOTS ---------- */
image-slot {
  display: block; width: 100%; height: 100%;
  --is-bg: var(--bg-2);
}
.media { position: relative; overflow: hidden; border-radius: 18px; background: var(--bg-2); }
.media image-slot { border-radius: inherit; }

/* ============================================================
   HERO — centered headline + curved photo panorama
   ============================================================ */
.hero { padding: 30px 0 96px; text-align: center; overflow: hidden; }
.hero__inner { padding: 0; }
.hero__top { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.hero__eyebrow { display: flex; justify-content: center; margin-bottom: 28px; }
.hero .display {
  font-size: clamp(46px, 6.6vw, 102px);
  line-height: .95;
  letter-spacing: -.018em;
  max-width: 15ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hero .display .accent-text { display: inline; }
.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--muted);
  font-weight: 400;
  max-width: 44ch;
  margin: 24px auto 0;
  text-wrap: balance;
}
.hero__cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* full-bleed cinematic photo wall */
.hero__stage {
  position: relative;
  width: 100%;
  margin: clamp(40px, 6vh, 76px) 0 0;
  height: clamp(440px, 63vh, 760px);
  overflow: hidden;
}
section[id], footer[id] { scroll-margin-top: 90px; }
.ext{width:11px;height:11px;display:inline-block;vertical-align:baseline;margin-left:3px;opacity:.7}
.nav__links a{display:inline-flex;align-items:center;gap:1px}
.hero__strip {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 22px);
  will-change: transform;
}
.hpane {
  --off: 0px; --py: 0px; --px: 0px;
  flex: none;
  height: 80%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  transform: translate3d(var(--px), calc(var(--off) + var(--py)), 0);
  box-shadow: 0 54px 92px -42px rgba(0,0,0,.72);
  will-change: transform;
}
.hpane--lead { height: 92%; z-index: 2; box-shadow: 0 64px 110px -44px rgba(0,0,0,.78); }
.hpane image-slot { position: absolute; inset: 0; transform-origin: center; }
.hpane::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
}
/* edge vignette blends the clipped wall into the section */
.hero__stage::before,
.hero__stage::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 5;
  width: clamp(48px, 9vw, 180px); pointer-events: none;
}
.hero__stage::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.hero__stage::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

@media (prefers-reduced-motion: no-preference) {
  .hpane image-slot { animation: kenburns 24s ease-in-out infinite alternate; }
  .hpane:nth-child(2n) image-slot { animation-duration: 30s; animation-direction: alternate-reverse; }
  .hpane--lead image-slot { animation-duration: 27s; }
  @keyframes kenburns {
    from { transform: scale(1.03); }
    to   { transform: scale(1.12); }
  }
}

.hero__foot { max-width: 780px; margin: 44px auto 0; padding: 0 24px; }
.hero__foot p { font-size: 14.5px; color: var(--muted); max-width: 62ch; margin: 0 auto 20px; }
.hero__foot .links { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; }

@media (max-width: 1180px) {
  .hero__stage { height: clamp(380px, 54vh, 580px); }
}
@media (max-width: 720px) {
  .hero { padding-bottom: 48px; }
  .hero__stage { height: auto; margin-top: 32px; overflow: visible; }
  /* mobile: peek carousel — one photo fully in view, neighbours peeking at the edges */
  .hero__strip {
    height: clamp(300px, 88vw, 420px);
    display: flex; align-items: stretch; justify-content: flex-start;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 10px; padding: 0 max(24px, calc(50vw - 39vw)) 6px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hero__strip::-webkit-scrollbar { display: none; }
  .hpane, .hpane--lead {
    height: 100%; width: 78vw; max-width: 360px; flex: none;
    aspect-ratio: auto;
    --off: 0px !important; --py: 0px !important;
    transform: none !important;
    scroll-snap-align: center; scroll-snap-stop: always;
    border-radius: 14px;
  }
  .hero__stage::before, .hero__stage::after { display: none; }
  .hero__dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
  .hero__dots span {
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--line); transition: width .3s ease, background .3s ease;
  }
  .hero__dots span.on { width: 22px; background: var(--accent); }
  body.has-js .hero__stage .hpane,
  body.has-js:not(.is-ready) .hero__stage .hpane {
    opacity: 1 !important; clip-path: none !important;
  }
}
@media (min-width: 721px) { .hero__dots { display: none; } }

/* ============================================================
   SECTION HEADER — editorial index bar + structured aside
   ============================================================ */
.shead {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-bottom: 64px;
}
.shead__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shead__idx { color: var(--fg); display: inline-flex; align-items: baseline; gap: 9px; }
.shead__idx b {
  font-family: "Instrument Serif", serif; font-weight: 400;
  font-size: 19px; letter-spacing: 0; color: var(--accent);
}
.shead__meta { color: var(--muted); }
.shead__main {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: end;
}
.shead__main .h2 { max-width: 13ch; }
.shead__aside { padding-bottom: 6px; }
.shead__aside .lede { margin-bottom: 24px; }
.shead__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.shead__tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  color: var(--fg);
  transition: border-color .25s ease, color .25s ease;
}
.shead__tags span:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 820px) {
  .shead__main { grid-template-columns: 1fr; gap: 28px; }
  .shead__bar { margin-bottom: 32px; }
}

/* ============================================================
   MAATWERK — core offer
   ============================================================ */
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.offer__feature {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px;
  background: var(--bg-2);
}
.offer__feature image-slot { position: absolute; inset: 0; }
.ofig {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; transform: scale(1.06);
  transition: opacity .85s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.ofig.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.ofig__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.offer__caps { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.offer__feature .cap {
  position: absolute; left: 26px; bottom: 24px; right: 26px;
  color: #f3efe6;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease, transform .65s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.offer__feature .cap.is-active { opacity: 1; transform: none; transition-delay: .12s; }
.offer__feature::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(15,13,9,.66) 100%);
}
.offer__list { display: grid; }
.offer__cards { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; height: 100%; }
.ocard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px 34px;
  background: var(--bg-2);
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .3s ease, transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.ocard:hover { border-color: var(--accent); transform: translateY(-3px); }
.ocard.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 20px 44px -26px rgba(0,0,0,.45);
}
.ocard__bar {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  border-bottom-left-radius: 18px;
}
.ocard .num {
  font-family: "Instrument Serif", serif; font-size: 20px;
  color: var(--accent); display: block; margin-bottom: 52px;
}
.ocard h3 { font-size: 25px; margin: 0 0 12px; line-height: 1.14; min-height: 2.28em; }
.ocard p { font-size: 14.5px; color: var(--muted); }
.offer__note {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 30px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--accent-soft);
}
.offer__note p { font-size: 15px; max-width: 46ch; }
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; }
  .offer__feature { min-height: 360px; }
  .offer__cards { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
}

/* ============================================================
   PRODUCTONTWIKKELING — co-creation
   ============================================================ */
.codev { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.codev__media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 4; background: var(--bg-2); }
.codev__media image-slot { position: absolute; inset: 0; }
/* productontwikkeling carousel */
.cdv { position: absolute; inset: 0; }
.cdv__slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.045);
  transition: opacity .8s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.cdv__slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.cdv__num {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  min-width: 30px; height: 30px; padding: 0 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(255,255,255,.92); color: #1c2a22;
  font: 600 13px/1 "Instrument Serif", serif;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.cdv__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(20,28,24,.34); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease, background .25s ease, transform .25s ease;
}
.cdv__arrow--prev { left: 14px; }
.cdv__arrow--next { right: 14px; }
.codev__media:hover .cdv__arrow { opacity: 1; }
.cdv__arrow:hover { background: var(--accent); border-color: var(--accent); }
.cdv__dots {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 4;
  display: flex; gap: 8px; justify-content: center;
}
.cdv__dot {
  width: 8px; height: 8px; padding: 0; border: 0; cursor: pointer;
  border-radius: 999px; background: rgba(255,255,255,.5);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  transition: width .3s ease, background .3s ease;
}
.cdv__dot.is-active { width: 26px; background: #fff; }
.codev__badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: var(--accent); color: var(--on-accent);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 9px 15px; border-radius: 999px;
}
.steps { margin-top: 40px; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .sn {
  font-family: "Instrument Serif", serif; font-size: 22px;
  color: var(--accent); padding-top: 2px;
}
.step h3 { font-size: 24px; margin-bottom: 6px; line-height: 1.05; }
.step p { font-size: 14.5px; color: var(--muted); max-width: 52ch; }
@media (max-width: 900px) {
  .codev { grid-template-columns: 1fr; gap: 36px; }
  .codev__media { aspect-ratio: 3 / 4; max-height: 70vh; }
}

/* productontwikkeling — atelier wall (staggered cross-dissolve mosaic) */
.devwall {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.32fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: clamp(460px, 56vw, 680px);
}
.dwf {
  position: relative; overflow: hidden;
  border-radius: 16px; background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 34px 64px -44px rgba(0,0,0,.55);
}
.dwf--feature { grid-row: span 2; border-radius: 20px; }
.dwf__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.06);
  transition: opacity 1.15s ease, transform 7.5s ease;
  will-change: opacity, transform;
}
.dwf__img.is-on { opacity: 1; transform: scale(1); }
.devwall .codev__badge { z-index: 6; }

.devflow {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.devflow__step { padding-top: 20px; border-top: 1px solid var(--line); }
.devflow__n {
  font-family: "Instrument Serif", serif; font-size: 22px; color: var(--accent);
  display: block; margin-bottom: 9px;
}
.devflow__step h3 { font-size: 21px; line-height: 1.08; margin-bottom: 7px; }
.devflow__step p { font-size: 14.5px; color: var(--muted); max-width: 40ch; }

.devwall__count {
  display: none; position: absolute; right: 14px; bottom: 14px; z-index: 6;
  font-family: "Instrument Serif", Georgia, serif; font-size: 15px;
  color: #fff; background: rgba(20,24,20,.55); backdrop-filter: blur(6px);
  padding: 7px 13px; border-radius: 999px; letter-spacing: .04em;
}
.devwall__count b { font-weight: 400; color: var(--accent); }
@media (max-width: 760px) {
  .devwall { display: block; height: auto; }
  .devwall .dwf { display: none; }
  .devwall .dwf--feature { display: block; aspect-ratio: 4 / 5; width: 100%; border-radius: 18px; }
  .devwall__count { display: inline-flex; gap: 4px; }
  .devflow { grid-template-columns: 1fr; gap: 0; }
  .devflow__step { padding: 20px 0; }
  .devflow__step:last-child { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   WEBSHOP BRIDGE
   ============================================================ */
.shop__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.shop__copy .h2 { margin: 18px 0 20px; }

/* Endless vertical bento marquee — tiles scroll through the green window */
.shop__marquee {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--g, 16px);
  height: clamp(540px, 64vh, 760px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 11%, #000 89%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 11%, #000 89%, transparent 100%);
}
.shop__col { position: relative; overflow: visible; }
.shop__scroll {
  display: flex; flex-direction: column; gap: var(--g, 16px);
  will-change: transform;
}
.shop__col--up   .shop__scroll { animation: shopMarqueeUp 42s linear infinite; }
.shop__col--down .shop__scroll { animation: shopMarqueeDown 52s linear infinite; }
.shop__marquee:hover .shop__scroll { animation-play-state: paused; }
@keyframes shopMarqueeUp {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - var(--g, 16px) / 2)); }
}
@keyframes shopMarqueeDown {
  from { transform: translateY(calc(-50% - var(--g, 16px) / 2)); }
  to   { transform: translateY(0); }
}
.shop__tile {
  border-radius: 16px; overflow: hidden; background: var(--bg-2);
  position: relative;
  aspect-ratio: 1 / 1;
}
.shop__tile.t-tall { aspect-ratio: 1 / 1.5; }
.shop__tile.t-wide { aspect-ratio: 2 / 1; }
/* light empty-state tints so slots read against the dark green */
.shop__tile:nth-child(3n+1) { background: #f1f3ee; }
.shop__tile:nth-child(3n+2) { background: #d6dcd1; }
.shop__tile:nth-child(3n+3) { background: #cadfca; }
.shop__num { display: none; }
.shop__num-old {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  min-width: 26px; height: 26px; padding: 0 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.92); color: #1c2a22;
  font: 600 12.5px/1 "Instrument Serif", serif;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  pointer-events: none;
}
.shop__tile image-slot { position: absolute; inset: 0; }
.shop__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.shop__tag { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .shop__inner { grid-template-columns: 1fr; gap: 36px; }
  .shop__marquee { height: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  .shop__col .shop__scroll { animation: none; }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 46px;
}
.tp {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 22px;
}
.tp__stars { display: flex; gap: 3px; }
.tp__star { width: 22px; height: 22px; background: #00b67a; display: inline-flex; align-items: center; justify-content: center; }
.tp__star svg { width: 14px; height: 14px; fill: #fff; }
.tp__meta { font-size: 13px; color: var(--muted); line-height: 1.4; }
.tp__meta b { color: var(--fg); font-weight: 600; }

.logos {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin-bottom: 40px;
}
.logos__cell {
  display: flex; align-items: center; justify-content: center;
  padding: 30px 18px; border-right: 1px solid var(--line-2);
  font-family: "Instrument Serif", serif; font-size: 22px;
  color: var(--muted); letter-spacing: .01em;
}
.logos__cell:last-child { border-right: 0; }
@media (max-width: 820px) { .logos { grid-template-columns: repeat(2, 1fr); } .logos__cell:nth-child(2n){border-right:0;} }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px 26px; display: flex; flex-direction: column;
  background: var(--bg-2);
}
.review > * { flex: 0 0 auto; }
.review__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review__stars .tp__star { width: 18px; height: 18px; }
.review p { font-size: 15px; line-height: 1.55; margin-bottom: auto; }
.review__by {
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
  font-size: 13.5px;
}
.review__av { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--bg); flex: none; }
.review__by b { display: block; font-weight: 600; }
.review__by span { color: var(--muted); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* Proof — project selector tabs + 16:9 photo */
.projsel {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.projsel__tab {
  appearance: none; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 500; letter-spacing: .01em;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 20px; line-height: 1;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.projsel__tab:hover { color: var(--fg); border-color: var(--fg); transform: translateY(-1px); }
.projsel__tab.is-active {
  color: var(--bg); background: var(--fg); border-color: var(--fg);
}
.projsel__hint {
  width: 100%; margin: 2px 0 0;
  font-size: 12.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
}

.projshow {
  position: relative; margin: 0 0 64px;
  aspect-ratio: 16 / 9; width: 100%;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--bg-2);
}
.projshow__fig {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease;
}
.projshow__fig.is-active { opacity: 1; visibility: visible; }
.projshow__fig image-slot { position: absolute; inset: 0; }

@media (max-width: 640px) { .projshow { aspect-ratio: 4 / 5; } }

/* Proof — Trustpilot summary bar above the cards */
.tphead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px 28px; flex-wrap: wrap;
  margin: 0 0 18px;
}
.tphead__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tphead__meta { margin: 0; font-size: 13.5px; color: var(--muted); }
.tphead__meta b { color: var(--fg); font-weight: 600; }
.tphead__link {
  font-size: 14px; font-weight: 500; color: var(--fg);
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; white-space: nowrap;
}
.tphead__link .arr { transition: transform .25s ease; }
.tphead__link:hover .arr { transform: translateX(4px); }

.reviews .review .review__txt, .reviews .review .review__by { transition: opacity .4s ease; }
.reviews.is-fading .review .review__txt, .reviews.is-fading .review .review__by { opacity: 0; }
.review__init {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: #00b67a; color: #fff;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
}
@media (max-width: 640px) { .proof__hero { aspect-ratio: 4 / 5; } }

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustain__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sustain__copy .h2 { margin: 20px 0 22px; }
.sustain__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 38px; }
.sustain__stats .s { padding-right: 22px; border-right: 1px solid var(--line); }
.sustain__stats .s:last-child { border-right: 0; padding-left: 22px; padding-right: 0; }
.sustain__stats .s:nth-child(2){ padding-left: 22px; }
.sustain__stats .k { font-family: "Instrument Serif", serif; font-size: clamp(32px,3vw,42px); line-height: 1; }
.sustain__stats .v { font-size: 13px; color: var(--muted); margin-top: 8px; }
.sustain__media { position: relative; height: 520px; border-radius: 20px; overflow: hidden; background: var(--bg-2); }
.sustain__media image-slot { position: absolute; inset: 0; }
@media (max-width: 900px) { .sustain__inner { grid-template-columns: 1fr; gap: 36px; } .sustain__media{height:380px;} }

/* ============================================================
   CONTACT — Niels
   ============================================================ */
.contact__card {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 0;
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
}
.contact__media { position: relative; min-height: 440px; background: var(--bg-2); }
.contact__media image-slot { position: absolute; inset: 0; }
.contact__body { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.contact__body .h2 { margin: 18px 0 16px; }
.contact__rows { display: flex; gap: 40px; flex-wrap: wrap; margin: 30px 0 32px; }
.contact__rows .lbl { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.contact__rows a { font-size: 18px; color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.contact__rows a:hover { border-color: var(--accent); }
.contact__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px) { .contact__card { grid-template-columns: 1fr; } .contact__body{ padding: 40px 32px; } .contact__media{min-height:300px;} }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 90px 0 40px; background: linear-gradient(to bottom, transparent, rgba(20,48,41,.045)); }
.footer .wrap { position: relative; z-index: 1; }
.footer__wm { position: absolute; left: 50%; bottom: -4vw; transform: translateX(-50%); width: min(92vw, 1300px); pointer-events: none; z-index: 0; }
.footer__wm svg { width: 100%; height: auto; display: block; }
.footer__wm svg path, .footer__wm svg circle { fill: var(--fg); opacity: .05; }
.footer:has(.footer__wm) .footer__bottom { margin-bottom: clamp(90px, 16vw, 220px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 64px; }
.footer__brand svg { height: 30px; width: auto; }
.footer__brand svg path, .footer__brand svg circle { fill: var(--fg); }
.footer__brand p { font-size: 14px; color: var(--muted); margin-top: 22px; max-width: 30ch; }
.footer__col h4 { font-family: "Google Sans", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; color: var(--fg); text-decoration: none; opacity: .82; }
.footer__col a:hover { opacity: 1; color: var(--accent); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;

  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.footer__bottom a { color: var(--muted); text-decoration: none; }
.footer__bottom a:hover { color: var(--fg); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   MOBILE POLISH
   ============================================================ */
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .band { padding: 76px 0; }
  .band--tight { padding: 56px 0; }
  .nav { padding: 16px 18px; }
  .nav__logo svg { width: 60px; }
  .display { font-size: clamp(46px, 13.5vw, 64px); }
  .h2 { font-size: clamp(31px, 9vw, 42px); }
  .lede { font-size: 16px; }
  .hero__cta { flex-wrap: nowrap; justify-content: center; gap: 10px; }
  .hero__cta .btn { flex: 1 1 0; justify-content: center; padding-left: 14px; padding-right: 14px; white-space: nowrap; }
  .hero__foot .links { gap: 16px 22px; }
  .shead__tags { gap: 8px; }
  .shead__tags span { padding: 8px 14px; font-size: 12.5px; }
  .offer__feature { min-height: 300px; }
  .offer__cards { grid-template-columns: 1fr; gap: 12px; }
  .ocard { padding: 20px 22px; display: grid; grid-template-columns: 30px 1fr; gap: 4px 12px; align-items: baseline; }
  .ocard .num { margin-bottom: 0; font-size: 17px; }
  .ocard h3 { min-height: 0; font-size: 21px; margin: 0; }
  .ocard p { grid-column: 2; margin: 0; font-size: 14px; }
  .ocard__bar { border-radius: 0 0 18px 18px; }
  .devwall { gap: 10px; height: auto; }
  .devflow { margin-top: 22px; }
  .shop__marquee { height: 400px; }
  .shop__cta .btn { flex: 1 1 100%; justify-content: center; }
  .projsel { gap: 8px; }
  .projsel__tab { padding: 10px 15px; font-size: 13px; }
  .tphead { flex-direction: column; align-items: flex-start; gap: 12px; }
  .review { padding: 22px 20px; }
  .contact__body { padding: 36px 24px; }
  .contact__rows { gap: 22px 34px; }
  .contact__cta .btn { flex: 1 1 100%; justify-content: center; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  section[id], footer[id] { scroll-margin-top: 72px; }
}

/* ---------- ENTRANCE ---------- */@media (prefers-reduced-motion: no-preference) {
  body.has-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
  body.has-js .reveal.in { opacity: 1; transform: none; }

  /* Hero cinematic entrance (load-triggered via body.is-ready) */
  body.has-js .hero [data-anim] { opacity: 0; transform: translateY(24px); }
  body.has-js .hero .display { opacity: 0; transform: translateY(30px); filter: blur(14px); }
  body.has-js:not(.is-ready) .hero__stage .hpane { opacity: 0; clip-path: inset(0 0 100% 0); transform: translate3d(0, calc(var(--off) + 72px), 0) scale(.97); }

  body.has-js.is-ready .hero [data-anim] {
    opacity: 1; transform: none;
    transition: opacity 1s ease, transform 1.05s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--d, 0s);
  }
  body.has-js.is-ready .hero .display {
    opacity: 1; transform: none; filter: blur(0);
    transition: opacity 1.1s ease, transform 1.15s cubic-bezier(.2,.7,.2,1), filter 1.1s ease;
    transition-delay: .14s;
  }
  body.has-js.is-ready .hero__stage .hpane {
    animation: hpaneRise 1.15s cubic-bezier(.16,1,.3,1) backwards;
    animation-delay: var(--d, 0s);
  }
  @keyframes hpaneRise {
    0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translate3d(0, calc(var(--off) + 72px), 0) scale(.97); }
    100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0, calc(var(--off) + var(--py)), 0) scale(1); }
  }
}
