  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --espresso: #1C0F08;
      --brown: #3D1F0D;
      --amber: #C8860A;
      --amber-light: #E5A020;
      --cream: #F5E6C8;
      --offwhite: #FAF3E8;
      --warmgray: #8C7B6B;
      --white: #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--espresso);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      background: linear-gradient(to bottom, rgba(28,15,8,0.95) 0%, rgba(28,15,8,0) 100%);
      transition: background 0.3s;
    }
    nav.scrolled {
      background: rgba(28,15,8,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,134,10,0.15);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .nav-logo img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }
    .nav-wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--cream);
      letter-spacing: 0.02em;
    }
    .nav-wordmark span {
      color: var(--amber);
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--warmgray);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--cream); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .hero-image-side {
      position: relative;
      overflow: hidden;
    }
    .hero-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: brightness(0.7) saturate(0.9);
      transform: scale(1.03);
      animation: slowzoom 12s ease-out forwards;
    }
    @keyframes slowzoom {
      from { transform: scale(1.06); }
      to { transform: scale(1.0); }
    }
    .hero-image-side::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--espresso) 100%);
    }

    .hero-text-side {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 8rem 4rem 6rem 3rem;
      position: relative;
      background: var(--espresso);
    }

    .hero-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.75rem;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeup 0.7s 0.3s ease forwards;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4vw, 4.2rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 1.75rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeup 0.8s 0.5s ease forwards;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--amber);
    }

    .hero-sub {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--warmgray);
      max-width: 38ch;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeup 0.7s 0.7s ease forwards;
    }

    .hero-divider {
      width: 48px;
      height: 2px;
      background: var(--amber);
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeup 0.5s 0.9s ease forwards;
    }

    .hero-paths {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      opacity: 0;
      transform: translateY(12px);
      animation: fadeup 0.7s 1.0s ease forwards;
    }

    .path-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.4rem;
      border: 1px solid rgba(200,134,10,0.25);
      background: rgba(200,134,10,0.04);
      text-decoration: none;
      transition: all 0.25s;
      cursor: pointer;
      group: true;
    }
    .path-btn:hover {
      border-color: var(--amber);
      background: rgba(200,134,10,0.1);
      transform: translateX(4px);
    }
    .path-btn-label {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .path-btn-tag {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 500;
    }
    .path-btn-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--cream);
    }
    .path-btn-arrow {
      font-size: 1.1rem;
      color: var(--amber);
      transition: transform 0.2s;
    }
    .path-btn:hover .path-btn-arrow {
      transform: translateX(5px);
    }

    @keyframes fadeup {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── SCROLL INDICATOR ── */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeup 0.6s 1.5s ease forwards;
    }
    .scroll-hint span {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--warmgray);
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--amber), transparent);
      animation: scrollpulse 2s 1.8s ease-in-out infinite;
    }
    @keyframes scrollpulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
      50% { opacity: 1; transform: scaleY(1); }
    }

    /* ── CONCEPT STRIP ── */
    .concept-strip {
      background: var(--amber);
      padding: 1.5rem 3rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      overflow: hidden;
    }
    .concept-strip-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--espresso);
      white-space: nowrap;
      animation: marquee 25s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .marquee-inner {
      display: flex;
      gap: 4rem;
    }
    .marquee-sep {
      color: var(--brown);
      opacity: 0.5;
    }

    /* ── WHAT SECTION ── */
    .what-section {
      padding: 8rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 6rem;
      align-items: start;
    }
    .what-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }
    .what-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 600;
      line-height: 1.15;
      color: var(--cream);
    }
    .what-headline em {
      font-style: italic;
      color: var(--amber);
    }
    .what-body p {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--warmgray);
      margin-bottom: 1.5rem;
    }
    .what-body p strong {
      color: var(--cream);
      font-weight: 500;
    }
    .what-stats {
      display: grid;
      grid-template-columns: 50% 50%;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .stat-card {
      padding: 1.5rem;
      border: 1px solid rgba(200,134,10,0.2);
      background: rgba(61,31,13,0.4);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--amber);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-label {
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--warmgray);
      line-height: 1.4;
    }

    /* ── TWO PATHS ── */
    .paths-section {
      padding: 0 0 8rem;
    }
    .paths-header {
      text-align: center;
      padding: 0 3rem 5rem;
    }
    .paths-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
    }
    .paths-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--cream);
    }

    .paths-grid {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;;
      min-height: 560px;
    }

@media (max-width: 768px) {
  .paths-grid {
    grid-template-columns: 1fr;
  }
  .path-divider {
    width: 100%;
    height: 1px;
  }
}

    .path-card {
      position: relative;
      overflow: hidden;
      padding: 4rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.4s;
    }
    .path-card::before {
      content: '';
      position: absolute;
      inset: 0;
      transition: opacity 0.4s;
    }
    .path-card--owner {
      background: var(--brown);
    }
    .path-card--owner::before {
      background: radial-gradient(ellipse at bottom right, rgba(200,134,10,0.2) 0%, transparent 70%);
    }
    .path-card--team {
      background: #0F0806;
    }
    .path-card--team::before {
      background: radial-gradient(ellipse at top left, rgba(200,134,10,0.15) 0%, transparent 70%);
    }
    .path-card:hover {
      transform: none;
    }
    .path-card--owner:hover { background: #4A2510; }
    .path-card--team:hover { background: #1A0D07; }

    .path-card-tag {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 500;
      position: relative;
      z-index: 1;
    }
    .path-card-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 700;
      color: rgba(200,134,10,0.08);
      line-height: 1;
      position: absolute;
      top: 2rem;
      right: 2.5rem;
      transition: color 0.4s;
      z-index: 0;
    }
    .path-card:hover .path-card-number {
      color: rgba(200,134,10,0.15);
    }

    .path-card-content { position: relative; z-index: 1; }
    .path-card-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 1.25rem;
    }
    .path-card-body {
      font-size: 0.925rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--warmgray);
      max-width: 38ch;
      margin-bottom: 2rem;
    }
    .path-card-points {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .path-card-point {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--warmgray);
    }
    .path-card-point::before {
      content: '';
      flex-shrink: 0;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--amber);
      margin-top: 0.55em;
    }
    .path-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 1.6rem;
      background: var(--amber);
      color: var(--espresso);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-decoration: none;
      transition: all 0.2s;
    }
    .path-cta:hover {
      background: var(--amber-light);
      gap: 1rem;
    }
    .path-cta-ghost {
      background: transparent;
      border: 1px solid rgba(200,134,10,0.4);
      color: var(--cream);
    }
    .path-cta-ghost:hover {
      background: rgba(200,134,10,0.1);
      border-color: var(--amber);
    }
    .path-divider {
      width: 1px;
      background: rgba(200,134,10,0.15);
    }





    /* ── HOW IT WORKS ── */
    .how-section {
      padding: 8rem 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .how-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 4rem;
    }
    .how-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
    .how-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.15;
    }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }

    .how-zaak-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }

    .how-steps::before {
      content: '';
      position: absolute;
      top: 1.5rem;
      left: 2rem;
      right: 2rem;
      height: 1px;
      background: rgba(200,134,10,0.2);
    }
    .how-step {
      padding: 0 1.25rem 0 0;
    }
    .how-step-dot {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: var(--brown);
      border: 1px solid rgba(200,134,10,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--amber);
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
      transition: all 0.2s;
    }
    .how-step:hover .how-step-dot {
      background: var(--amber);
      color: var(--espresso);
      border-color: var(--amber);
    }
    .how-step-title {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }
    .how-step-body {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--warmgray);
      line-height: 1.6;
    }

/* ── INLINE AANVRAAG LINK ── */
p.reveal a {
  color: var(--amber);
  text-decoration: none;
  margin-left: 0.4rem;
  transition: color 0.2s;
}
p.reveal a::after {
  content: ' →';
}
p.reveal a:hover {
  color: var(--amber-light);
}
    /* ── QUOTE ── */
    .quote-section {
      padding: 6rem 3rem;
      text-align: center;
      border-top: 1px solid rgba(200,134,10,0.12);
      border-bottom: 1px solid rgba(200,134,10,0.12);
      background: var(--brown);
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: var(--amber);
      opacity: 0.3;
      line-height: 0.5;
      margin-bottom: 1.5rem;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 400;
      font-style: italic;
      color: var(--cream);
      max-width: 720px;
      margin: 0 auto 1.5rem;
      line-height: 1.5;
    }
    .quote-source {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--amber);
    }

    /* ── FOOTER ── */
    footer {
      padding: 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(200,134,10,0.1);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .footer-logo img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
    }
    .footer-wordmark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--warmgray);
    }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--warmgray);
      opacity: 0.5;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: var(--warmgray);
      opacity: 0.35;
    }

/* ── FOOTER INITIATIEFNEMER LINK ── */
.footer-copy a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-copy a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-image-side { height: 55vw; }
      .hero-image-side::after { background: linear-gradient(to bottom, transparent 50%, var(--espresso) 100%); }
      .hero-text-side { padding: 3rem 2rem 5rem; }
      .what-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
      .paths-grid { grid-template-columns: 1fr; }
      .path-divider { width: 100%; height: 1px; }
      .how-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .how-steps::before { display: none; }
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
    }
  </style>
