
/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --off-white: #F5F1EA;
  --ivory: #EDE6DA;
  --sand: #D9CDB8;
  --taupe: #A89680;
  --warm-grey: #6B6258;
  --dark-brown: #2B1F15;
  --ink: #1A1410;
  --accent: #6B4423;
  --line: rgba(43, 31, 21, 0.12);
  --line-strong: rgba(43, 31, 21, 0.28);
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 12vw, 160px);
}

/* RESET & BASE */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 200;
  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.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* CUSTOM CURSOR */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px; height: 8px;
    background: var(--dark-brown);
    border-radius: 50%;
    pointer-events: none;
    z-index: 300;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
  }
  .cursor.hover { width: 56px; height: 56px; background: var(--off-white); }
  .cursor.hidden { opacity: 0; }
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 60;
  padding: clamp(14px, 2.2vw, 24px) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--off-white);
}
header.scrolled, header.dark-page {
  padding-top: clamp(10px, 1.6vw, 16px);
  padding-bottom: clamp(10px, 1.6vw, 16px);
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 60;
}
.logo em { font-style: italic; font-weight: 300; opacity: 0.6; }

.desktop-nav { display: none; }
@media (min-width: 969px) {
  .desktop-nav {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
  }
}
.desktop-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:not(.header-cta)::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.desktop-nav a:not(.header-cta):hover::after { width: 100%; }
  /* Maatwerk dropdown (desktop) */
  .nav-dd { position: relative; }
  .nav-dd > a { display: inline-flex; align-items: center; gap: 5px; }
  .nav-dd > a .dd-caret { width: 8px; height: 8px; transition: transform 0.3s ease; }
  .nav-dd:hover > a .dd-caret, .nav-dd:focus-within > a .dd-caret { transform: rotate(180deg); }
  .nav-dd-panel {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px; background: var(--off-white); border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(26, 20, 16, 0.12);
    padding: 10px 0; list-style: none;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s; z-index: 250;
  }
  .nav-dd:hover .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dd-panel li { display: block; }
  .nav-dd-panel a {
    display: block; padding: 11px 26px; font-size: 13px; letter-spacing: 0.06em;
    text-transform: none; white-space: nowrap; color: var(--ink);
    transition: background 0.25s ease, padding-left 0.25s ease;
  }
  .nav-dd-panel a::after { display: none; }
  .nav-dd-panel a:hover { background: rgba(43, 31, 21, 0.05); padding-left: 30px; }
  .nav-dd-panel::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

.desktop-nav a.active::after { width: 100%; }

.header-cta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
}
.header-cta:hover {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
@media (min-width: 969px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--ink);
  color: var(--off-white);
  z-index: 55;
  padding: clamp(80px, 12vh, 110px) var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }
.mobile-menu a {
  display: block;
  padding: 24px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: padding-left 0.4s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { padding-left: 16px; }
.mobile-menu .mm-sub { list-style: none; margin: 4px 0 8px; padding: 0; }
.mobile-menu .mm-sub a { font-size: clamp(17px, 4.5vw, 22px); padding: 11px 0 11px 18px; color: rgba(245, 241, 234, 0.78); border-left: 1px solid rgba(245, 241, 234, 0.18); margin-left: 2px; }
.mobile-menu .mm-sub a:hover, .mobile-menu .mm-sub a:active { padding-left: 26px; color: var(--off-white); }
.mobile-menu .mm-cta {
  margin-top: 32px;
  padding: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  border: 1px solid var(--accent);
}
.mobile-menu-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.6);
  line-height: 1.7;
}
.mobile-menu-footer a {
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--off-white);
}
body.menu-open { overflow: hidden; }
body.menu-open header {
  color: var(--off-white) !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

/* =========================================================
   PAGE HERO (used by sub-pages, smaller than home hero)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: clamp(520px, 75vh, 720px);
  overflow: hidden;
  color: var(--off-white);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 10vh, 120px);
  padding-top: clamp(120px, 16vh, 160px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 18s linear;
}
.page-hero.in-view .page-hero-bg { transform: scale(1); }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.4) 0%, rgba(26, 20, 16, 0.2) 30%, rgba(26, 20, 16, 0.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero-eyebrow {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
  overflow: hidden;
}
.page-hero-eyebrow span {
  display: inline-block;
  transform: translateY(100%);
  animation: rise 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero-eyebrow::before {
  content: '';
  width: clamp(24px, 4vw, 40px);
  height: 1px;
  background: var(--off-white);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 1100px;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.page-hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
}
.page-hero h1 .line:nth-child(1) > span { animation: rise 1.3s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 .line:nth-child(2) > span { animation: rise 1.3s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}
.page-hero-sub {
  margin-top: clamp(24px, 4vh, 40px);
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  opacity: 0.85;
  opacity: 0;
  animation: fadeIn 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow { to { transform: scaleX(1); } }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 0.85; } }

/* =========================================================
   SECTIONS
   ========================================================= */
section.block {
  padding: var(--section-y) 0;
  position: relative;
}
.section-eye {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.section-eye .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 13px;
}
.section-eye .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 200px;
}

/* Display heading shared */
h2.display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
h2.display em { font-style: italic; font-weight: 300; }
h3.serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3.serif em { font-style: italic; font-weight: 300; }

/* Lead paragraph */
.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 560px;
}

/* =========================================================
   QUOTE BLOCK (reusable)
   ========================================================= */
.quote-block {
  padding: var(--section-y) 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1100px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.quote-block blockquote em { font-style: italic; font-weight: 300; color: var(--accent); }
.quote-block .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 80px);
  color: var(--accent);
  line-height: 0;
  height: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 40px);
  font-style: italic;
}
.quote-block cite {
  font-style: normal;
  font-size: clamp(11px, 1.2vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: inline-block;
}
.quote-block cite strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 12px;
}

/* =========================================================
   CTA BLOCK (reusable end-of-page)
   ========================================================= */
.cta-final {
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-eyebrow {
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: '';
  width: clamp(20px, 3vw, 32px);
  height: 1px;
  background: var(--warm-grey);
}
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: clamp(36px, 6vw, 56px);
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-brown);
  color: var(--off-white);
  padding: clamp(18px, 2.5vw, 24px) clamp(24px, 4vw, 44px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
@media (hover: hover) {
  .cta-button:hover::before { width: 600px; height: 600px; }
  .cta-button:hover svg { transform: translateX(6px); }
}
.cta-button span, .cta-button svg { position: relative; z-index: 2; transition: transform 0.4s ease; }
.cta-secondary {
  margin-top: clamp(32px, 5vw, 48px);
  font-size: clamp(12px, 1.3vw, 13px);
  color: var(--warm-grey);
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: center;
}
.cta-secondary a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}
.cta-secondary a:hover { border-color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink);
  color: var(--off-white);
  padding: clamp(56px, 8vw, 80px) 0 clamp(24px, 3vw, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
@media (min-width: 541px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 769px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 541px) and (max-width: 768px) {
  .footer-brand { grid-column: 1 / -1; }
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.footer-logo em { font-style: italic; font-weight: 300; opacity: 0.5; }
.footer-tag {
  font-size: clamp(13px, 1.4vw, 14px);
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: clamp(10px, 1.5vw, 14px); }
.footer-col a {
  font-size: clamp(13px, 1.4vw, 14px);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  padding-top: clamp(20px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.4);
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-brown);
  color: var(--off-white);
  text-align: center;
  padding: 16px;
  z-index: 40;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 54px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .page-hero-bg { transform: none !important; }
  .page-hero-eyebrow span,
  .page-hero h1 .line > span { transform: none !important; }
  .page-hero-sub { opacity: 0.85 !important; }
}

<style>
/* ==========================================================
   WERKWIJZE PAGE
   ========================================================== */

/* Intro section after hero */
.intro {
  padding: var(--section-y) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 769px) {
  .intro-grid { grid-template-columns: 1fr 1.4fr; }
}
.intro-heading {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
.intro-heading em { font-style: italic; font-weight: 300; }
.intro-body {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
}
.intro-body p { margin-bottom: 1.2em; max-width: 560px; }
.intro-body p:last-child { margin-bottom: 0; }

/* STICKY STEPS — 5 numbered phases */
.steps {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 var(--section-y) 0;
}
.steps-intro {
  margin-bottom: clamp(48px, 8vw, 96px);
}

.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(56px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
}
.step:first-child { border-top: none; padding-top: 0; }

@media (min-width: 769px) {
  .step { grid-template-columns: 1fr 1.2fr; }
}

.step-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
}
@media (min-width: 769px) {
  .step-meta {
    position: sticky;
    top: 120px;
  }
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.step-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.step-title em { font-style: italic; font-weight: 300; }

.step-body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--ink);
}
.step-body p { margin-bottom: 1.2em; max-width: 560px; }
.step-body p:last-child { margin-bottom: 1em; }

.step-details {
  margin-top: clamp(24px, 4vw, 32px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 541px) {
  .step-details { grid-template-columns: auto auto; gap: clamp(32px, 4vw, 48px); }
}
.step-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-detail .label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.step-detail .value {
  font-family: 'Fraunces', serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.4;
}

.step-image {
  margin-top: clamp(20px, 3vw, 32px);
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  max-width: 100%;
}
.step.no-image .step-image { display: none; }

/* Between steps insight blocks - editorial pause */
.insight {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ivory);
  text-align: center;
}
.insight blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  max-width: 900px;
  margin: 0 auto;
}
.insight blockquote em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

/* What's not in the process — counter-section */
.not-process {
  padding: var(--section-y) 0;
  background: var(--dark-brown);
  color: var(--off-white);
}
.not-process .section-eye { color: var(--sand); }
.not-process .section-eye .num { color: var(--sand); }
.not-process .section-eye .line { background: rgba(245, 241, 234, 0.2); }
.not-process h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-bottom: clamp(40px, 6vw, 64px);
  max-width: 900px;
}
.not-process h2 em { font-style: italic; font-weight: 300; color: var(--sand); }

.not-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.18);
}
.not-item {
  padding: clamp(28px, 4.5vw, 40px) 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
}
@media (min-width: 641px) {
  .not-item { grid-template-columns: 60px 1fr 2fr; }
}
.not-cross {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 22px);
}
.not-thing {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.not-reason {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.78);
  max-width: 480px;
  grid-column: 1 / -1;
  margin-top: 8px;
}
@media (min-width: 641px) {
  .not-reason { grid-column: 3; margin-top: 0; }
}


    /* Opschoning werkwijze: Romeinse cijfers verbergen */
    .num { display: none !important; }
    /* Footer-adres consistent met overige contact-items */
    .footer-col .footer-address { font-size: clamp(13px, 1.4vw, 14px); opacity: 0.85; }

    /* Lucht tussen hero en intro herstellen (werkwijze) */
    .intro { padding-top: clamp(72px, 12vw, 160px) !important; }


.footer-word{height:19px;width:auto;display:block;opacity:.95;} /*footer-word*/
.crumbs a:hover{color:var(--accent);} .ld-item a:hover{color:var(--accent);} .manifesto-body a:hover{color:var(--accent);} /*accent-hover*/
.logo{display:inline-flex;align-items:center;gap:12px;line-height:0;}
.logo-mark{height:30px;width:auto;flex:none;display:block;}
.logo-word{height:15px;width:auto;flex:none;display:block;}
@media(max-width:560px){.logo-mark{height:26px;}.logo-word{height:12px;}}
.footer-mark{height:46px;width:auto;flex:none;display:block;opacity:.95;} /*logo-css*/

.header-tel { display:flex; align-items:center; }
.header-tel a { display:inline-flex; align-items:center; gap:7px; font-size:14px; color:inherit; opacity:.9; }
.header-tel a:hover { opacity:1; }
@media (max-width:900px) { .header-tel { display:none; } }
.mobile-bar { position:fixed; left:0; right:0; bottom:0; z-index:300; display:none; grid-template-columns:1fr 1fr; }
.mobile-bar a { display:flex; align-items:center; justify-content:center; gap:9px; padding:16px 10px; font-size:15px; font-weight:500; text-decoration:none; letter-spacing:.01em; }
.mobile-bar a.mb-call { background:var(--off-white,#f3efe7); color:var(--ink,#2b2018); border-top:1px solid var(--line,#d8d0c4); }
.mobile-bar a.mb-wa { background:#2b2018; color:#f3efe7; }
@media (max-width:768px) { .mobile-bar { display:grid; } body { padding-bottom:58px; } }
.crumbs { font-size:12px; letter-spacing:.04em; text-transform:uppercase; color:var(--warm-grey,#8a8175); padding:clamp(18px,3vw,26px) 0; }
.crumbs .container { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.crumbs a { color:inherit; text-decoration:none; opacity:.8; }
.crumbs a:hover { opacity:1; text-decoration:underline; }
.crumbs span.sep { opacity:.45; }
.crumbs span.here { color:var(--ink,#2b2018); }
.footer-social { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; padding:clamp(24px,4vw,32px) 0 0; margin-top:clamp(24px,4vw,32px); border-top:1px solid rgba(255,255,255,.12); }
.footer-tagline { font-family:'Fraunces',serif; font-style:italic; font-size:clamp(16px,2vw,20px); opacity:.92; }
.footer-social-links { display:flex; gap:14px; }
.footer-social-links a { display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.25); border-radius:50%; color:inherit; transition:background .25s,color .25s; }
.footer-social-links a:hover { background:#f3efe7; color:#2b2018; }
