/*
  STRKBEHEER BV — Premium Stylesheet
  Built with taste-skill principles
  DESIGN_VARIANCE: 6 | MOTION_INTENSITY: 5 | VISUAL_DENSITY: 3
  Aesthetic: Luxury real estate investment — dark, gold, refined
*/

/* ══════════════════════════════════════════════════════════
   IMPORTS — Premium typefaces
   ══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=DM+Mono:wght@300;400&display=swap');

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --ink:        #080808;
  --ink-2:      #101010;
  --ink-3:      #161616;
  --paper:      #f0ece4;
  --paper-2:    #e8e2d6;
  --gold:       #c9a96e;
  --gold-2:     #e8c87e;
  --gold-3:     #a07840;
  --white:      #ffffff;
  --muted:      rgba(240,236,228,0.55);
  --faint:      rgba(240,236,228,0.28);
  --line:       rgba(201,169,110,0.18);
  --line-hard:  rgba(201,169,110,0.35);

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;

  /* Spacing scale (base 8) */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 80px;
  --s8: 96px;
  --s9: 128px;
  --s10: 160px;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:   180ms;
  --dur-med:    320ms;
  --dur-slow:   500ms;
  --dur-xslow:  800ms;
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL — taste-skill motion system
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* Fade only variant */
.reveal-fade {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.reveal-fade.visible { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s6);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}

.nav.scrolled {
  background: rgba(8,8,8,0.98);
  border-bottom-color: var(--line-hard);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  letter-spacing: 0;
}
.nav-logo .brand {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1;
}
.nav-logo .sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav-links li a:hover { color: var(--paper); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--paper); }

/* Nav dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--line);
  min-width: 210px;
  list-style: none;
  z-index: 300;
  padding: 6px 0;
  backdrop-filter: blur(20px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: rgba(10,10,10,0.98);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint) !important;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast);
  white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover {
  color: var(--gold) !important;
  background: rgba(201,169,110,0.06);
}
.nav-dropdown li + li { border-top: 1px solid rgba(201,169,110,0.08); }

/* Nav CTA buttons */
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-btn-secondary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 9px 20px;
  display: inline-block;
  transition:
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.nav-btn-secondary:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
}
.nav-btn-primary {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 9px 20px;
  display: inline-block;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--spring);
}
.nav-btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   BUTTONS — taste-skill: no generic CTAs
   ══════════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--spring),
    box-shadow var(--dur-med) var(--ease-out);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: translateX(-101%);
  transition: transform var(--dur-med) var(--ease-out);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,110,0.25); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(240,236,228,0.2);
  padding: 15px 32px;
  cursor: pointer;
  background: transparent;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.04);
}

/* ══════════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.center {
  justify-content: center;
}
.section-eyebrow.center::before { display: none; }

h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: var(--s3);
  letter-spacing: -0.01em;
}
h2.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
}

/* Dividers */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.gold-rule.center { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   PROMISE BAND — refined metric strip
   ══════════════════════════════════════════════════════════ */
.promise-band {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.promise-item {
  padding: 28px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--dur-med) var(--ease-out);
}
.promise-item:hover { background: rgba(201,169,110,0.04); }
.promise-item:last-child { border-right: none; }
.promise-icon { display: none; }
.promise-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.promise-text span {
  font-size: 12px;
  font-weight: 300;
  color: var(--faint);
  letter-spacing: 0;
}

/* ══════════════════════════════════════════════════════════
   STRUCTURE BAND — corporate identity strip
   ══════════════════════════════════════════════════════════ */
.structure-band {
  background: var(--gold);
  padding: 20px var(--s6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.s-entity { display: flex; flex-direction: column; gap: 3px; }
.s-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(8,8,8,0.5);
}
.s-name {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--ink);
}
.s-role {
  font-size: 11px;
  font-weight: 300;
  color: rgba(8,8,8,0.55);
}
.s-sep { width: 1px; height: 40px; background: rgba(8,8,8,0.18); }
.s-arrow { font-size: 16px; color: rgba(8,8,8,0.32); }

/* ══════════════════════════════════════════════════════════
   CHECKLIST
   ══════════════════════════════════════════════════════════ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,236,228,0.78);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.checklist li::before {
  content: '→';
  color: var(--gold);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════
   FORMS — taste-skill: no generic inputs
   ══════════════════════════════════════════════════════════ */
.form-wrapper {
  background: rgba(16,16,16,0.95);
  border: 1px solid var(--line);
  padding: 36px 40px;
}
.form-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-title::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.form-grid { display: grid; gap: 12px; }
.form-grid.two-col { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(240,236,228,0.04);
  border: 1px solid rgba(240,236,228,0.1);
  border-bottom-color: rgba(201,169,110,0.3);
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
  width: 100%;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23c9a96e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-field select option { background: #141414; color: var(--paper); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  border: none;
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
  transition:
    background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--spring);
}
.form-submit:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}
.form-note {
  font-size: 11px;
  color: var(--faint);
  margin-top: 8px;
  text-align: center;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   MICRO ACTIONS
   ══════════════════════════════════════════════════════════ */
.micro-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.micro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(240,236,228,0.12);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
  background: transparent;
  cursor: pointer;
}
.micro-btn:hover { border-color: var(--gold); color: var(--gold); }
.micro-btn .icon { font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   RESPONSE BADGE
   ══════════════════════════════════════════════════════════ */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(76,175,128,0.08);
  border: 1px solid rgba(76,175,128,0.25);
  padding: 10px 18px;
}
.dot-green {
  width: 7px; height: 7px;
  background: #5cb88a;
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
.response-badge span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5cb88a;
}

/* ══════════════════════════════════════════════════════════
   PROJECT CARDS — taste-skill: editorial card design
   ══════════════════════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.project-card {
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.06);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.project-card:hover::after { opacity: 1; }

/* VNA (voor/na hover) */
.vna-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  background: var(--ink-3);
}
.vna-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity var(--dur-slow) var(--ease-inout);
}
.vna-img.vna-na { opacity: 1; z-index: 2; }
.vna-img.vna-voor { opacity: 0; z-index: 1; }
.vna-wrap:hover .vna-img.vna-na { opacity: 0; }
.vna-wrap:hover .vna-img.vna-voor { opacity: 1; }
.vna-label {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(8,8,8,0.8);
  color: var(--gold);
  padding: 5px 10px;
  pointer-events: none;
  transition: opacity var(--dur-med);
}
.vna-label-hover {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(8,8,8,0.8);
  color: var(--faint);
  padding: 5px 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med);
}
.vna-wrap:hover .vna-label { opacity: 0; }
.vna-wrap:hover .vna-label-hover { opacity: 1; }

.project-info { padding: 24px 28px 32px; }
.project-type {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.project-loc {
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 18px;
}
.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.meta-item label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-bottom: 3px;
}
.meta-item span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(240,236,228,0.72);
}
.meta-item span.highlight { color: var(--gold); font-weight: 500; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: var(--s10) var(--s6) var(--s7);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   QUOTE BLOCK
   ══════════════════════════════════════════════════════════ */
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 14px 0 14px 28px;
  margin: 36px 0;
}
.quote-block p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: rgba(240,236,228,0.82);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════
   MID-PAGE CTA — taste-skill: no generic CTA section
   ══════════════════════════════════════════════════════════ */
.mid-cta {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s7) var(--s6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.mid-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  position: relative;
}
.mid-cta h2 em { font-style: italic; color: var(--gold); }
.mid-cta p {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto var(--s5);
  line-height: 1.8;
  font-weight: 300;
  position: relative;
}
.mid-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   FLOATING CTA
   ══════════════════════════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--spring), box-shadow var(--dur-med);
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.float-btn.wa { background: #25d366; color: #fff; }
.float-btn.wa:hover { background: #22c05d; }

/* ══════════════════════════════════════════════════════════
   MODAL — taste-skill: premium drawer feel
   ══════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.88);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--ink-2);
  border: 1px solid var(--line);
  max-width: 520px;
  width: 100%;
  padding: var(--s6);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn var(--dur-slow) var(--ease-out) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--faint);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--dur-fast);
  padding: 4px;
}
.modal-close:hover { color: var(--paper); }
.modal-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.modal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.modal .modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   FOOTER — taste-skill: branded, not generic
   ══════════════════════════════════════════════════════════ */
.footer {
  background: #040404;
  border-top: 1px solid var(--line);
  padding: 40px var(--s6);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-brand .brand {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1;
}
.footer-brand .sub {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.footer-legal {
  font-size: 11px;
  color: var(--faint);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* Hero entrance */
.anim-0 { opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.05s forwards; }
.anim-1 { opacity: 0; animation: fadeUp 0.7s var(--ease-out) 0.18s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.7s var(--ease-out) 0.32s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.7s var(--ease-out) 0.46s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.7s var(--ease-out) 0.60s forwards; }

/* ══════════════════════════════════════════════════════════
   WERKWIJZE IMAGES
   ══════════════════════════════════════════════════════════ */
.werkwijze-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.9);
  transition: filter var(--dur-med) var(--ease-out);
}
.werkwijze-img:hover { filter: brightness(0.88) saturate(1); }
.werkwijze-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   ORG IMAGE
   ══════════════════════════════════════════════════════════ */
.org-img-wrap { position: relative; overflow: hidden; background: var(--ink-3); }
.org-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) brightness(0.85);
  transition: filter var(--dur-slow) var(--ease-out);
}
.org-img-wrap:hover img { filter: grayscale(0%) brightness(0.92); }
.org-img-placeholder {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-3);
}

/* ══════════════════════════════════════════════════════════
   PHOTO CAPTION
   ══════════════════════════════════════════════════════════ */
.photo-caption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* ══════════════════════════════════════════════════════════
   VNA IMAGE — for project cards (defined above, extended)
   ══════════════════════════════════════════════════════════ */
.project-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.project-card:hover .project-img-real { transform: scale(1.03); }

/* ══════════════════════════════════════════════════════════
   NAV DROPDOWN CSS
   ══════════════════════════════════════════════════════════ */
.nav-diensten { position: relative; }

/* ══════════════════════════════════════════════════════════
   SCROLL INDICATOR — taste-skill detail
   ══════════════════════════════════════════════════════════ */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 36px;
  left: var(--s6);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.scroll-indicator span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  writing-mode: vertical-rl;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%  { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100%{ transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav { padding: 0 var(--s4); }
  .nav-links { gap: 0; }
  .nav-links li a { padding: 8px 12px; font-size: 11px; }
}

@media (max-width: 960px) {
  .nav { padding: 0 var(--s3); height: 64px; }
  .nav-links { display: none; }
  .nav-btn-secondary { display: none; }
  .promise-band { grid-template-columns: 1fr 1fr; }
  .promise-item { padding: 20px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-grid.two-col { grid-template-columns: 1fr; }
  .structure-band { gap: 16px; padding: 16px 24px; }
  .page-hero { padding: var(--s8) var(--s4) var(--s6); }
  .mid-cta { padding: var(--s6) var(--s4); }
  .scroll-indicator { display: none; }
}

@media (max-width: 640px) {
  .promise-band { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .nav-actions .nav-btn-primary { padding: 8px 14px; font-size: 10px; }
}
