 :root {
    --ink: #1a1a2e;
    --cream: #faf8f4;
    --warm: #f5f0e8;
    --accent: #c8553d;
    --accent-soft: #e8a598;
    --teal: #2d6a6a;
    --teal-light: #3d8a8a;
    --muted: #7a7a8a;
    --border: #e0dcd4;
    --card: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a1a2e 0%, #2d3a5e 40%, #2d6a6a 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200,85,61,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45,106,106,0.2) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeUp 1s ease-out;
  }

  .hero-badge {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
  }

  .hero h1 em {
    color: var(--accent-soft);
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
  }

  .hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-meta span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
  }

  .scroll-hint span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .scroll-hint svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.3);
  }

  /* MAIN CONTENT */
  .content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
  }

  /* SECTION */
  .section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
  }

  .section:nth-child(1) { animation-delay: 0.1s; }
  .section:nth-child(2) { animation-delay: 0.2s; }
  .section:nth-child(3) { animation-delay: 0.3s; }
  .section:nth-child(4) { animation-delay: 0.4s; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
  }

  .section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .section p {
    font-size: 1.05rem;
    color: #4a4a5a;
    max-width: 720px;
    line-height: 1.85;
    margin-bottom: 1rem;
  }

  /* CARDS GRID */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--accent));
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: transparent;
  }

  .card:hover::before { opacity: 1; }

  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }

  .card-icon.teal { background: rgba(45,106,106,0.1); color: var(--teal); }
  .card-icon.warm { background: rgba(200,85,61,0.1); color: var(--accent); }

  .card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* STAT BAR */
  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
  }

  .stat {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.3s ease;
  }

  .stat:hover { transform: translateY(-2px); }

  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
  }

  /* DOELGROEP PROFILE */
  .profile-box {
    background: linear-gradient(135deg, #1a1a2e, #2d3a5e);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .profile-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,85,61,0.15), transparent 70%);
    pointer-events: none;
  }

  .profile-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    position: relative;
  }

  .profile-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .profile-item .dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-soft);
    margin-top: 0.5rem;
  }

  .profile-item span {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  /* QUOTE */
  .quote-block {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: rgba(200,85,61,0.04);
    border-radius: 0 12px 12px 0;
  }

  .quote-block p {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
  }

  .quote-block cite {
    display: block;
    margin-top: 0.8rem;
    font-family: 'Instrument Sans', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--muted);
  }

  /* DIVIDER */
  .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--accent));
    border-radius: 2px;
    margin: 4rem 0;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
  }

  footer p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.8;
  }

  footer .project-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 1rem;
    background: rgba(45,106,106,0.08);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.1em;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
  }

  /* RESPONSIVE */
  @media (max-width: 640px) {
    .content { padding: 3rem 1.2rem 2rem; }
    .section { margin-bottom: 3rem; }
    .profile-box { padding: 2rem 1.5rem; }
    .stats { grid-template-columns: 1fr 1fr; }
    .hero-meta { gap: 1rem; }
  }