/* ============================================================
   VOSS ATELIER — Premium Paint Company CSS
   Design System: Editorial Luxury × Soft Structuralism
   ============================================================ */

/* --- TOKENS ------------------------------------------------- */
:root {
  --cream:     #F7F5F0;
  --bone:      #EFECE5;
  --sand:      #E2DDD5;
  --ink:       #1A1816;
  --ink-soft:  #2F2B27;
  --ink-muted: #7A736A;
  --gold:      #C9A96E;
  --gold-deep: #A6854A;
  --dark:      #0F0E0D;
  --dark-2:    #1C1A17;
  --white:     #FDFCFA;
  --border:    rgba(26,24,22,.09);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  --ease-out:  cubic-bezier(.22,.68,0,1.2);
  --ease-circ: cubic-bezier(.4,0,.2,1);

  --nav-h: 100px;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, select, input, textarea { font-family: inherit; }

/* --- SCROLL REVEAL ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-circ), transform .7s var(--ease-circ);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- TYPOGRAPHY --------------------------------------------- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold); }

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.dot--dark  { background: var(--gold-deep); }
.dot--light { background: var(--gold); }

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 5px;
  transition: transform .2s var(--ease-circ), background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: scale(.97); }
.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26,24,22,.18);
}
.btn--primary:hover {
  background: var(--ink-soft);
  box-shadow: 0 6px 32px rgba(26,24,22,.28);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}
.btn--full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,8,6,.55) 0%, rgba(10,8,6,0) 100%);
  transition: background .5s var(--ease-circ),
              backdrop-filter .5s,
              box-shadow .5s;
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: rgba(255,255,255,.1);
  transition: opacity .5s;
}
.nav.scrolled::after { opacity: 0; }
.nav.scrolled {
  background: rgba(26,24,22,.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* Logo — left */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 130px;
  width: auto;
  display: block;
}

/* Nav links — right */
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  position: relative;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .3s;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-circ);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav.scrolled .nav__links a { color: rgba(255,255,255,.75); text-shadow: none; }
.nav.scrolled .nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a::after { background: var(--gold); }

/* Contact CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px !important;
  background: rgba(255,255,255,.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  border-radius: 3px;
  font-size: .72rem !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  transition: background .25s, border-color .25s, transform .2s !important;
  text-shadow: none !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.4) !important;
  color: var(--white) !important;
  transform: scale(.97);
}
.nav.scrolled .nav__cta {
  background: var(--gold-deep) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--gold) !important;
}

/* Burger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 12px;
  grid-column: 3;
  justify-self: end;
  transition: background .3s, border-color .3s;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .4s, transform .4s, opacity .3s;
  transform-origin: center;
}
.nav.scrolled .nav__burger {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.nav.scrolled .nav__burger span { background: var(--white); }
.nav__burger.open {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
}
.nav__burger.open span { background: var(--white) !important; }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) 8% 56px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .45s var(--ease-circ), visibility .45s;
  z-index: 99;
  overflow: hidden;
}
.nav__mobile.open {
  visibility: visible;
  opacity: 1;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav__mobile li {
  border-bottom: 1px solid rgba(253,252,250,.07);
  overflow: hidden;
}
.nav__mobile li:first-child { border-top: 1px solid rgba(253,252,250,.07); }

.mobile-link {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  padding: 18px 0;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: color .3s, opacity .45s, transform .45s;
}
.nav__mobile.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile.open li:nth-child(1) .mobile-link { transition-delay: .06s; }
.nav__mobile.open li:nth-child(2) .mobile-link { transition-delay: .12s; }
.nav__mobile.open li:nth-child(3) .mobile-link { transition-delay: .18s; }
.nav__mobile.open li:nth-child(4) .mobile-link { transition-delay: .24s; }
.mobile-link:hover { color: var(--gold); }

.mobile-link__num {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}

.mobile-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s .3s, transform .4s .3s;
}
.nav__mobile.open .mobile-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-tel {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: rgba(253,252,250,.4);
  letter-spacing: .02em;
}
.mobile-cta {
  font-size: .9rem !important;
  padding: 14px 28px !important;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #2A2017 0%, #1A1208 40%, #0F0E0D 100%),
    url('images/hero-bg.jpeg') center/cover no-repeat;
  background-blend-mode: multiply;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .45;
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,14,13,.7) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 5% 40px;
  max-width: 820px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(253,252,250,.65);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 120px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(253,252,250,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(253,252,250,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .4; }
  50%      { transform: scaleY(.6); opacity: .1; }
}

/* stat strip */
.hero__stat-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(15,14,13,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(253,252,250,.08);
  padding: 24px 5%;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(253,252,250,.45);
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(253,252,250,.1);
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  width: 100%;
}
.marquee { overflow: hidden; width: 100%; }
.marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,252,250,.5);
  padding: 0 24px;
}
.marquee__track .sep {
  color: var(--gold) !important;
  padding: 0 4px !important;
  letter-spacing: 0 !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  padding: 120px 5%;
}
.diensten .section-label { margin-bottom: 10px; }
.diensten .section-title { margin-bottom: 60px; }

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

/* Diensten cards: eigen reveal (lift + scale, geen blur) */
.dienst__card.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 1s var(--ease-circ),
              transform 1.05s var(--ease-circ);
}
.dienst__card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dienst__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,24,22,.06);
  transition: box-shadow .35s, transform .35s;
  min-height: 360px;
  color: inherit;
  cursor: pointer;
}
.dienst__card:hover {
  box-shadow: 0 16px 48px rgba(26,24,22,.13);
  transform: translateY(-5px);
}

.dienst__img {
  height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-circ);
  position: relative;
  overflow: hidden;
}
.dienst__card:hover .dienst__img {
  transform: scale(1.06);
}

.dienst__num {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,.55);
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  line-height: 1;
  letter-spacing: -.03em;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.dienst__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dienst__body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 7px;
  line-height: 1.25;
}
.dienst__body p {
  font-size: .8rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.werk {
  background: var(--dark);
  padding: 120px 5%;
}
.werk__header {
  margin-bottom: 52px;
}
.gallery {
  columns: 4;
  column-gap: 10px;
}
.gallery__item {
  break-inside: avoid;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
  aspect-ratio: 3/4;
  transition: transform .3s var(--ease-circ), box-shadow .3s;
}

/* Gallery: eigen reveal (overschrijft generieke .reveal) */
.gallery__item.reveal {
  opacity: 0;
  transform: scale(0.91);
  filter: blur(10px);
  transition: opacity 1.1s var(--ease-circ),
              transform 1.2s var(--ease-circ),
              filter 1s var(--ease-circ);
}
.gallery__item.reveal.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.gallery__item:nth-child(3n+1) { aspect-ratio: 3/4; }
.gallery__item:nth-child(3n+2) { aspect-ratio: 4/5; }
.gallery__item:nth-child(3n)   { aspect-ratio: 1/1; }
.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ============================================================
   OVER ONS
   ============================================================ */
.over {
  padding: 140px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.over__left .section-title { margin-bottom: 24px; }
.over__body {
  font-size: .95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.over__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.badge svg { width: 15px; height: 15px; flex-shrink: 0; }

/* image stack */
.over__img-stack {
  position: relative;
  height: 500px;
}
.over__img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.over__img--back {
  width: 78%;
  height: 88%;
  top: 0; right: 0;
}
.over__img--front {
  width: 58%;
  height: 65%;
  bottom: 0; left: 0;
  box-shadow: 0 24px 56px rgba(26,24,22,.18);
  border: 6px solid var(--cream);
}
.over__years {
  position: absolute;
  top: 50%; right: 18%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15,14,13,.4);
  z-index: 2;
}
.over__years-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.over__years-label {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(253,252,250,.5);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--ink);
  padding: 120px 5%;
}
.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__head {
  margin-bottom: 72px;
}
.testimonials__head .section-label { margin-bottom: 16px; }
.testimonials__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tcol {
  padding: 0 56px;
  border-left: 1px solid rgba(201,169,110,.18);
}
.tcol:first-child { border-left: none; padding-left: 0; }
.tcol:last-child { padding-right: 0; }
.tcol__stars {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: 5px;
  margin-bottom: 24px;
}
.tcol__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(253,252,250,.82);
  line-height: 1.72;
  margin: 0 0 32px;
  padding: 0;
  border: none;
}
.tcol__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .45;
  margin-bottom: 20px;
}
.tcol__author strong {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px;
}
.tcol__author span {
  font-size: .7rem;
  color: rgba(253,252,250,.32);
}

/* ============================================================
   PROCES
   ============================================================ */
.proces {
  padding: 120px 5%;
  background: var(--bone);
}
.proces__header {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.proces__header .section-label { margin-bottom: 16px; }

.proces__steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.proces__step {
  position: relative;
}

.pstep__top {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.pstep__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}
.proces__step:hover .pstep__circle {
  background: var(--gold);
}

.pstep__num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  transition: color .3s;
}
.proces__step:hover .pstep__num {
  color: var(--dark);
}

.pstep__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,.4), rgba(201,169,110,.05));
  margin-left: 16px;
}

.pstep__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}

.pstep__desc {
  font-size: .87rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.proces__footer {
  max-width: 1200px;
  margin: 72px auto 0;
}

/* ============================================================
   MERKEN
   ============================================================ */
.merken {
  background: var(--bone);
  padding: 64px 5%;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.merken__label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.merken__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
}
.merken__logos span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted);
  transition: color .25s;
}
.merken__logos span:hover { color: var(--ink); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--dark-2);
  padding: 120px 5%;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section-title { margin-bottom: 20px; }
.contact__sub {
  font-size: .95rem;
  color: rgba(253,252,250,.5);
  margin-bottom: 44px;
  line-height: 1.7;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(253,252,250,.6);
  transition: color .25s;
}
.contact__detail:hover { color: var(--gold); }
.contact__detail svg { width: 18px; height: 18px; flex-shrink: 0; }

/* FORM */
.form {
  background: rgba(253,252,250,.04);
  border: 1px solid rgba(253,252,250,.08);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form__group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(253,252,250,.45);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(253,252,250,.06);
  border: 1px solid rgba(253,252,250,.1);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--white);
  outline: none;
  transition: border-color .25s, background .25s;
  resize: none;
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(253,252,250,.25); }
.form__group select option { background: var(--dark-2); color: var(--white); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(253,252,250,.05);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: .84rem;
  color: rgba(253,252,250,.35);
  line-height: 1.7;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,252,250,.35);
  margin-bottom: 6px;
}
.footer__col a,
.footer__col span {
  font-size: .84rem;
  color: rgba(253,252,250,.45);
  transition: color .2s;
  line-height: 1.5;
}
.footer__col a:hover { color: rgba(253,252,250,.85); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(253,252,250,.06);
  font-size: .78rem;
  color: rgba(253,252,250,.25);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: rgba(253,252,250,.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery { columns: 2; }

  .over {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .over__img-stack { height: 380px; }

  .contact__inner { grid-template-columns: 1fr; gap: 60px; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }

  .proces__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .pstep__line { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  :root { --nav-h: 80px; }
  .nav__logo-img { height: 90px; }

  .hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero__stat-strip { flex-wrap: wrap; gap: 8px; }
  .stat { padding: 8px 16px; }
  .stat__divider { display: none; }
  .br-desktop { display: none; }

  .diensten__grid { grid-template-columns: repeat(2, 1fr); }
  .dienst__img { aspect-ratio: 4 / 3; }
  .dienst__num { font-size: 2.8rem; color: rgba(255,255,255,.3); }

  .gallery {
    columns: unset;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item {
    flex: 0 0 72vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    aspect-ratio: 3/4;
    margin-bottom: 0;
  }
  .gallery__item:nth-child(3n+1),
  .gallery__item:nth-child(3n+2),
  .gallery__item:nth-child(3n) { aspect-ratio: 3/4; }

  .testimonials__cols { grid-template-columns: 1fr; gap: 48px; }
  .tcol { border-left: none; padding: 0 0 48px; border-bottom: 1px solid rgba(201,169,110,.15); }
  .tcol:last-child { border-bottom: none; padding-bottom: 0; }
  .proces__steps { grid-template-columns: 1fr; gap: 32px; }

  .form__row { grid-template-columns: 1fr; }
  .form { padding: 24px; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .over__img-stack { height: 320px; }
  .over__img--back { width: 100%; height: 80%; }
  .over__img--front { width: 55%; height: 55%; }
}

/* ============================================================
   OFFERTE POPUP
   ============================================================ */
.offerte-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-circ), visibility .4s;
}
.offerte-overlay.open {
  opacity: 1;
  visibility: visible;
}

.offerte-modal {
  display: flex;
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
  transform: translateY(32px) scale(.98);
  transition: transform .45s var(--ease-circ);
}
.offerte-overlay.open .offerte-modal {
  transform: translateY(0) scale(1);
}

/* ── Left panel ───────────────────────────────── */
.offerte-side {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.offerte-side__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.offerte-overlay.open .offerte-side__bg {
  transform: scale(1.04);
}
.offerte-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
    rgba(15,14,13,.45) 0%,
    rgba(15,14,13,.92) 100%);
}
.offerte-side__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 36px;
}
.offerte-side__logo {
  height: 72px;
  width: auto;
}
.offerte-side__badges {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offerte-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(253,252,250,.78);
  font-size: .81rem;
  font-weight: 400;
  letter-spacing: .01em;
}
.offerte-badge svg {
  width: 17px; height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Right panel ──────────────────────────────── */
.offerte-form-panel {
  flex: 1;
  background: var(--cream);
  overflow-y: auto;
  position: relative;
  padding: 48px 52px 48px;
  display: flex;
  flex-direction: column;
}

.offerte-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,24,22,.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.offerte-close:hover { background: rgba(26,24,22,.13); transform: scale(1.08); }
.offerte-close svg { width: 15px; height: 15px; }

/* ── Progress ─────────────────────────────────── */
.offerte-progress {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.offerte-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.offerte-progress__step span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink-muted);
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s var(--ease-circ), color .4s, box-shadow .4s;
}
.offerte-progress__step small {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .3s;
}
.offerte-progress__step.active span {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,24,22,.22);
}
.offerte-progress__step.active small { color: var(--ink); }
.offerte-progress__step.done span {
  background: var(--gold-deep);
  color: var(--white);
}
.offerte-progress__step.done small { color: var(--gold-deep); }
.offerte-progress__line {
  flex: 1;
  height: 2px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  margin: 15px 8px 0;
  border-radius: 2px;
}
.offerte-progress__fill {
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-circ);
  border-radius: 2px;
}
.offerte-progress__fill.filled { transform: scaleX(1); }

/* ── Step content ─────────────────────────────── */
.offerte-step-content {
  display: none;
  flex-direction: column;
  flex: 1;
}
.offerte-step-content.active {
  display: flex;
  animation: offerteStepIn .38s var(--ease-circ);
}
@keyframes offerteStepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.offerte-step-content.back-anim {
  animation: offerteStepBack .38s var(--ease-circ);
}
@keyframes offerteStepBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.offerte-step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.offerte-title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.offerte-title em {
  font-style: italic;
  color: var(--gold-deep);
}

/* ── Type card grid ───────────────────────────── */
.offerte-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.offerte-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 22px 10px 18px;
  background: var(--white);
  border: 1.5px solid rgba(26,24,22,.09);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .22s var(--ease-circ), box-shadow .25s;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.offerte-type-card svg {
  width: 26px; height: 26px;
  color: var(--ink-muted);
  transition: color .25s;
}
.offerte-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,24,22,.08);
}
.offerte-type-card.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(26,24,22,.2);
}
.offerte-type-card.selected svg { color: var(--gold); }

/* ── Form fields (light variant) ──────────────── */
.offerte-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.offerte-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.offerte-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offerte-field-group label {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.offerte-field-group input,
.offerte-field-group select,
.offerte-field-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(26,24,22,.1);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .88rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  outline: none;
}
.offerte-field-group input::placeholder,
.offerte-field-group textarea::placeholder { color: rgba(26,24,22,.28); }
.offerte-field-group input:focus,
.offerte-field-group select:focus,
.offerte-field-group textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(166,133,74,.12);
}
.offerte-field-group textarea { resize: vertical; min-height: 100px; }
.offerte-field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A736A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

/* ── Navigation buttons ───────────────────────── */
.offerte-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}
.offerte-back-btn {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid rgba(26,24,22,.14);
  padding: 13px 22px;
  font-size: .85rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s;
}
.offerte-back-btn:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
  transform: scale(.97);
}
.offerte-next-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Success screen ───────────────────────────── */
.offerte-success-screen {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding-top: 20px;
}
.offerte-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(166,133,74,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.offerte-success__icon svg {
  width: 38px; height: 38px;
  color: var(--gold-deep);
}
.offerte-success__sub {
  color: var(--ink-muted);
  font-size: .9rem;
  max-width: 290px;
  line-height: 1.6;
}
.offerte-success__sub strong { color: var(--ink); }

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .offerte-overlay { padding: 0; align-items: flex-end; }
  .offerte-modal {
    border-radius: 20px 20px 0 0;
    align-self: flex-end;
    max-height: 93vh;
    transform: translateY(100%);
  }
  .offerte-overlay.open .offerte-modal { transform: translateY(0); }
  .offerte-side { display: none; }
  .offerte-form-panel { padding: 36px 28px 44px; }
  .offerte-type-grid { grid-template-columns: repeat(2, 1fr); }
  .offerte-fields-row { grid-template-columns: 1fr; }
  .offerte-progress { margin-bottom: 28px; }
}


