﻿

:root {
  --cream:    #f3e6c8;
  --cream2:   #fbf3dd;
  --bone:     #fdf8ea;
  --ink:      #0c1a0c;
  --ink-soft: #1a2a18;
  --coffee:   #1e3a1e;
  --tan:      #9bbe88;
  --green:    #1f6b1f;
  --green-deep: #134811;
  --sage:     #6da866;
  --moss:     #2f5e3a;
  --paper:    #dfe6c6;

  --f-display: "Anton", "Archivo Black", "Helvetica Neue", Impact, sans-serif;
  --f-serif:   "Instrument Serif", "Playfair Display", Georgia, serif;
  --f-body:    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono:    "Space Mono", "JetBrains Mono", ui-monospace, monospace;

  --c-pad: clamp(20px, 4vw, 96px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--c-pad);
  padding-right: var(--c-pad);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.tag-light {
  border-color: var(--bone);
  color: var(--bone);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 130px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.display .italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--green);
}
.display-light { color: var(--bone); }
.display-light .italic.italic-sage { color: var(--sage); }

.lede {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--coffee);
  margin: 0 0 16px;
  max-width: 62ch;
}
.lede-light { color: var(--cream2); }
.lede strong { color: var(--ink); font-weight: 600; }
.lede-light strong { color: var(--bone); }

.bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
  color: var(--ink);
}
.bullet-arrow {
  font-family: var(--f-display);
  color: var(--green);
  font-size: 1.3em;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.eyebrow-light { color: var(--cream2); }
.eyebrow .dot { color: var(--green); font-size: 8px; }

/* TE KOOP sticker */
.sticker.te-koop {
  position: absolute;
  top: 120px;
  left: var(--c-pad);
  background: var(--green);
  color: var(--bone);
  padding: 18px 28px;
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  transform: rotate(-6deg);
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 5;
}



.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--c-pad);
  display: flex;
  align-items: center;
  gap: 24px;
  background: transparent;
  transition: background 250ms, padding 250ms, box-shadow 250ms;
}
.nav.is-scrolled {
  background: rgba(243, 230, 200, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px var(--c-pad);
  box-shadow: 0 1px 0 rgba(12,26,12,0.1);
}
.nav-logo {
  background: var(--bone);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto 0 16px;
  padding: 0;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: color 150ms;
}
.nav.is-scrolled .nav-links a {
  color: var(--ink);
  text-shadow: none;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--bone);
  padding: 12px 18px;
  border-radius: 999px;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--green-deep); }



.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 5vw, 80px) clamp(60px, 7vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
/* soft radial glow in the bottom-right for depth */
.hero::before {
  content: '';
  position: absolute;
  right: -200px; bottom: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,107,31,0.16) 0%, rgba(31,107,31,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,168,102,0.12) 0%, rgba(109,168,102,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}


.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-brand {
  display: inline-block;
  background: var(--bone);
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(12,26,12,0.08);
  align-self: flex-start;
}
.hero-brand img {
  height: 56px;
  width: auto;
  display: block;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coffee);
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 14px;
}
.hero-meta .dot { color: var(--green); font-size: 8px; line-height: 1; }

.hero-title {
  font-weight: 400;
  margin: 4px 0 0;
  line-height: 0.82;
  display: flex;
  flex-direction: column;
}
.hero-title-sans {
  font-family: var(--f-display);
  font-size: clamp(64px, 9.5vw, 168px);
  color: var(--ink);
  letter-spacing: 0;
}
.hero-title-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(78px, 11.5vw, 200px);
  color: var(--green);
  letter-spacing: 0;
  margin-top: -8px;
}

.hero-tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.25;
  color: var(--coffee);
  max-width: 22ch;
  margin: 10px 0 0;
}
.hero-tagline em { color: var(--green); font-style: italic; }

/* PROPS */
.hero-props {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  max-width: 640px;
}
.hero-props li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hp-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  flex-shrink: 0;
}
.hp-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hp-text strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: 0em;
  line-height: 1.1;
}
.hp-text em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}

/* CTA buttons + badge */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  align-items: center;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 150ms, background 150ms, color 150ms, box-shadow 150ms;
  cursor: pointer;
  border: none;
}
.hero-btn .arr {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.hero-btn-primary {
  background: #f2b705;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-btn-primary:hover {
  background: #ffcf24;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}
.hero-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.hero-btn-secondary:hover {
  background: var(--ink);
  color: var(--bone);
}

/* "Reactie binnen 24 uur" badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--bone);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 6px;
  box-shadow: 4px 4px 0 rgba(31,107,31,0.15);
}
.hb-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 18px;
  flex-shrink: 0;
}
.hb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hb-text strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0em;
  color: var(--ink);
  line-height: 1.1;
}
.hb-text em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}


.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}
.te-koop.sticker {
  position: absolute;
  top: -16px;
  right: -10px;
  z-index: 5;
  background: var(--green);
  color: var(--bone);
  padding: 16px 26px;
  font-family: var(--f-display);
  font-size: clamp(32px, 3vw, 52px);
  letter-spacing: 0.02em;
  transform: rotate(-7deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero-video {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--green);
  aspect-ratio: 16 / 10;
  background: var(--ink);
  transition: transform 250ms, box-shadow 250ms;
}
.hero-video:hover {
  transform: translate(-3px, -3px);
  box-shadow: 17px 17px 0 var(--green);
}
.hero-video-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.hero-video:hover .hero-video-img {
  transform: scale(1.04);
}
.hero-video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,12,0) 35%, rgba(12,26,12,0.85) 100%);
}
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 200ms;
}
.hero-video-play::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(253,248,234,0.6);
  animation: ring-pulse 2.4s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.5);  opacity: 0;   }
}
.hero-video:hover .hero-video-play { transform: translate(-50%, -50%) scale(1.06); }
.hero-video-play svg { margin-left: 5px; }

.hero-video-info {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--bone);
}
.hv-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
}
.hv-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.9vw, 30px);
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--bone);
}
.hv-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream2);
  opacity: 0.85;
}

.hero-video-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: var(--bone);
  border: 1.5px solid var(--ink);
  padding: 18px 22px;
}
.hero-video-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-video-meta strong {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--green);
  letter-spacing: 0;
  line-height: 1;
}
.hero-video-meta em {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
}

/* SCROLL indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--coffee);
  text-transform: uppercase;
  opacity: 0.55;
  z-index: 2;
}
.hero-scroll .arrow {
  font-size: 18px;
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}


@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right { padding-top: 30px; }
  .te-koop.sticker {
    top: -8px;
    right: 0;
  }
}
@media (max-width: 640px) {
  .hero-props { grid-template-columns: 1fr; }
  .hero-video-meta { grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 12px 14px; }
  .hero-video-meta strong { font-size: 22px; }
  .hero-cta-row { gap: 10px; }
  .hero-btn { padding: 14px 20px; font-size: 11px; }
  .hero-scroll { display: none; }
}



.intro {
  padding: 120px 0 80px;
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--coffee);
}



.stats {
  padding: 40px 0 120px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--bone);
  border: 2px solid var(--ink);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  min-height: 280px;
}
.stat-card.stat-dark {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 8px 8px 0 var(--green);
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.stat-dark .stat-label { color: var(--sage); }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: auto;
  font-variant-numeric: tabular-nums;
}
.stat-dark .stat-num { color: var(--bone); }
.stat-num-text {
  font-size: clamp(48px, 5vw, 80px);
}
.stat-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
}
.stat-dark .stat-sub { color: var(--cream2); }



.bigphoto {
  position: relative;
  height: clamp(540px, 80vh, 800px);
  overflow: hidden;
  background: var(--ink);
}
.bigphoto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bigphoto-ribbon {
  position: absolute;
  top: 80px;
  left: -20px;
  background: var(--ink);
  color: var(--bone);
  padding: 18px 40px;
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: 0.02em;
  transform: rotate(-3deg);
  box-shadow: 10px 10px 0 var(--green);
}
.bigphoto-quote {
  position: absolute;
  left: var(--c-pad);
  bottom: 60px;
  margin: 0;
  background: var(--bone);
  padding: 20px 32px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 50px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0;
  max-width: 700px;
  box-shadow: 10px 10px 0 var(--green);
}

/* right-aligned variants for the interior photo block */
.bigphoto-ribbon-right {
  left: auto;
  right: -20px;
  transform: rotate(3deg);
  box-shadow: -10px 10px 0 var(--green);
}
.bigphoto-quote-right {
  left: auto;
  right: var(--c-pad);
  bottom: 60px;
  text-align: right;
  box-shadow: -10px 10px 0 var(--green);
}



.boot {
  padding: 120px 0;
  background: var(--cream);
}
.boot-head { margin-bottom: 60px; max-width: 900px; }
.boot-schematic {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
}
.boot-schematic svg { width: 100%; height: auto; }
.area-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.area-chip {
  background: var(--ink);
  color: var(--bone);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 6px 6px 0 var(--green);
}
.area-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 84px);
  color: var(--sage);
  line-height: 0.95;
  letter-spacing: 0;
}
.area-num span {
  font-family: var(--f-body);
  font-size: 0.35em;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0;
  margin-left: 4px;
}
.area-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream2);
}



.locatie {
  padding: 120px 0;
  background: var(--cream2);
}
.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.locatie-map {
  position: relative;
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}
.locatie-map svg { width: 100%; height: auto; display: block; }
.map-distance {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.map-d-label { opacity: 0.7; }
.map-d-num {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--sage);
  letter-spacing: 0;
}
.map-route {
  animation: draw-route 1.6s cubic-bezier(.4,.7,.2,1) forwards;
  animation-play-state: paused;
  stroke-dashoffset: 420;
}
.locatie-map.is-visible .map-route { animation-play-state: running; }
@keyframes draw-route {
  to { stroke-dashoffset: 0; }
}



.concept {
  padding: 140px 0;
  background: var(--ink);
  color: var(--bone);
}
.concept-head {
  max-width: 900px;
  margin-bottom: 70px;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.concept-card {
  background: var(--ink-soft);
  border: 1.5px solid var(--green);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms, background 200ms;
}
.concept-card:hover {
  transform: translateY(-4px);
  background: var(--coffee);
}
.concept-icon {
  font-family: var(--f-display);
  font-size: 42px;
  color: var(--sage);
  line-height: 1;
}
.concept-card h3 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
  color: var(--bone);
}
.concept-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream2);
  margin: 0;
}



.inbegrepen {
  padding: 140px 0;
  background: var(--cream);
}
.inb-head { max-width: 900px; margin-bottom: 60px; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: check;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1.5px solid rgba(30,58,30,0.2);
  font-family: var(--f-body);
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 500;
  color: var(--ink);
}
.check {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 22px;
  flex-shrink: 0;
}
.check-text { flex: 1; }
.check-num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--coffee);
  opacity: 0.7;
}



.toekomst {
  padding: 140px 0 100px;
  background: var(--ink);
  color: var(--bone);
}
.toekomst-head { max-width: 900px; margin-bottom: 60px; }
.toekomst-skyline {
  position: relative;
  width: 100%;
  height: 380px;
  margin: 40px 0 60px;
}
.toekomst-skyline svg { width: 100%; height: 100%; display: block; }
.toekomst-skyline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sage);
}
.toekomst-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.toekomst-stat {
  background: var(--bone);
  color: var(--ink);
  padding: 24px 28px;
  box-shadow: 8px 8px 0 var(--green);
}
.t-num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.t-num span {
  font-size: 0.5em;
  color: var(--coffee);
}
.t-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-top: 8px;
  line-height: 1.4;
}



.specs {
  padding: 140px 0;
  background: var(--cream2);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.specs-head { position: sticky; top: 120px; }
.specs-table dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-top: 2px solid var(--ink);
}
.specs-table dt {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  padding: 18px 0;
  border-bottom: 1px solid rgba(30,58,30,0.2);
}
.specs-table dd {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(30,58,30,0.2);
}



.contact {
  padding: 140px 0 100px;
  background: var(--cream);
  position: relative;
}
.contact-head {
  position: relative;
  margin-bottom: 50px;
}
.contact-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 160px);
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-title .italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.contact-title .green {
  color: var(--green);
}
.contact-arrow {
  position: absolute;
  top: 80px;
  right: 8%;
  font-family: var(--f-display);
  font-size: clamp(120px, 16vw, 280px);
  color: var(--sage);
  line-height: 0.85;
  transform: rotate(8deg);
}

.contact-card {
  background: var(--ink);
  color: var(--bone);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 14px 14px 0 var(--green);
}
.card-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-col-mid {
  border-left: 1.5px solid var(--sage);
  padding-left: 36px;
  gap: 14px;
}
.card-col-right { text-align: right; }
.card-label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
}
.card-name {
  font-family: var(--f-display);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--bone);
}
.card-org {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream2);
  line-height: 1.5;
}
.card-phone {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.4vw, 54px);
  color: var(--bone);
  letter-spacing: 0.01em;
  line-height: 1;
}
.card-phone:hover { color: var(--sage); }
.card-email {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 26px);
  color: var(--sage);
  word-break: break-all;
}
.card-email:hover { color: var(--bone); }
.card-second {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream2);
  margin-top: 6px;
}
.card-second a:hover { color: var(--sage); }
.card-logo {
  display: inline-block;
  background: var(--bone);
  padding: 12px 16px;
  border-radius: 6px;
  margin-left: auto;
}
.card-logo img { width: 150px; height: auto; }
.card-address {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream2);
  margin-top: 12px;
}

.conversion-strip {
  padding: 42px 0 58px;
  background: var(--cream);
}
.conversion-strip-inner,
.concept-cta,
.contact-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--green);
  padding: clamp(24px, 4vw, 46px);
}
.concept-cta {
  margin-top: 44px;
  background: var(--cream2);
}
.contact-cta-panel {
  margin: 0 0 38px;
}
.conversion-eyebrow {
  display: block;
  margin: 0 0 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.conversion-strip strong,
.concept-cta strong,
.contact-cta-panel strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
}
.conversion-strip em,
.concept-cta em,
.contact-cta-panel em {
  display: block;
  max-width: 48ch;
  margin-top: 10px;
  color: var(--coffee);
  font-style: normal;
  font-size: clamp(16px, 1.2vw, 19px);
}
.cta-button,
.footer-cta,
.floating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  background: #f2b705;
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms, box-shadow 160ms, background 160ms;
}
.cta-button {
  min-height: 62px;
  padding: 18px 26px;
  border-radius: 999px;
}
.cta-button span,
.footer-cta span {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0;
}
.cta-button:hover,
.footer-cta:hover,
.floating-cta:hover,
.hero-btn-primary:hover {
  background: #ffcf24;
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--ink);
}
.cta-pop {
  border: 2px solid var(--ink);
}
.cta-pulse {
  animation: cta-nudge 2.6s ease-in-out infinite;
}
@keyframes cta-nudge {
  0%, 100% { transform: translateY(0); box-shadow: 6px 6px 0 var(--ink); }
  45% { transform: translateY(-3px); box-shadow: 7px 9px 0 var(--ink); }
  55% { transform: translateY(-1px); box-shadow: 7px 7px 0 var(--ink); }
}
.footer-cta {
  min-height: 54px;
  margin: 10px 0 18px;
  padding: 14px 20px;
  border-radius: 999px;
}
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 58px;
  padding: 15px 20px;
  border-radius: 999px;
}
.floating-cta strong {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 36px);
}
.lead-modal.is-open {
  display: flex;
}
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 12, 0.72);
  backdrop-filter: blur(5px);
}
.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(860px, calc(100vh - 32px));
  overflow: auto;
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 #f2b705;
  padding: clamp(20px, 3vw, 34px);
}
.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #f2b705;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lead-modal-copy {
  padding-right: 52px;
  margin-bottom: 18px;
}
.lead-modal-copy h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
}
.lead-modal-copy p {
  margin: 12px 0 0;
  color: var(--coffee);
}
.lead-modal iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  background: var(--bone);
}
body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .cta-pulse {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .conversion-strip-inner,
  .concept-cta,
  .contact-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .conversion-strip {
    padding: 28px 0 44px;
  }
  .cta-button,
  .footer-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
  .lead-modal {
    padding: 10px;
  }
  .lead-modal-dialog {
    max-height: calc(100vh - 20px);
    padding: 18px 14px 14px;
    box-shadow: 7px 7px 0 #f2b705;
  }
  .lead-modal-copy {
    padding-right: 46px;
  }
  .lead-modal iframe {
    height: 620px;
  }
}



.footer {
  padding: 60px 0 50px;
  background: var(--cream);
  border-top: 1px solid rgba(30,58,30,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: end;
}
.footer-logo {
  display: inline-block;
  background: var(--bone);
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.footer-logo img { height: 50px; width: auto; }
.footer-small {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  margin: 0 0 12px;
  color: var(--coffee);
}
.footer-meta strong { color: var(--ink); }



@media (max-width: 1000px) {
  .nav-links { display: none; }
  .intro-grid,
  .locatie-grid,
  .specs-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .specs-head { position: static; }
  .footer-meta { text-align: left; }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-chips {
    grid-template-columns: 1fr;
  }
  .toekomst-stats {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 28px;
  }
  .card-col-mid {
    border-left: none;
    border-top: 1.5px solid var(--sage);
    padding-left: 0;
    padding-top: 24px;
  }
  .card-col-right { text-align: left; }
  .card-logo { margin-left: 0; }

  .contact-arrow {
    display: none;
  }

  .hero { min-height: 90vh; }
  .sticker.te-koop { top: 90px; }
}

@media (max-width: 640px) {
  .stat-grid { grid-template-columns: 1fr; }
  .concept-grid { grid-template-columns: 1fr; }
  .nav-cta {
    padding: 8px 14px;
    font-size: 10px;
  }
  .nav-logo img { height: 28px; }
  .specs-table dl { grid-template-columns: 1fr; }
  .specs-table dt { padding-bottom: 4px; border-bottom: none; }
  .specs-table dd { padding-top: 4px; padding-bottom: 16px; }
  .check-item { gap: 14px; padding: 12px 0; }
  .check { width: 32px; height: 32px; font-size: 16px; }
  .check-num { display: none; }
  .bigphoto-quote { padding: 14px 20px; }
  .hero-strip { font-size: 11px; gap: 12px; }
}


