* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #0a0a0d;
    color: #f4ede1;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 28px 0 90px;
    overflow: hidden;
    background: url("images/hero.jpg") right center / cover no-repeat;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(6, 7, 10, 0.82) 0%, rgba(6, 7, 10, 0.68) 38%, rgba(6, 7, 10, 0.48) 100%);
    z-index: 1;
  }
  
  .hero-light {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(circle at 78% 24%, rgba(212, 175, 55, 0.10), transparent 24%);
    pointer-events: none;
  }
  
  .nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .brand-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #faf5ea;
  }
  
  .brand-title span {
    color: #d4af37;
  }
  
  .brand-subtitle {
    margin-top: 6px;
    font-size: 14px;
    color: #c6b895;
  }
  
  .nav-links {
    display: flex;
    gap: 26px;
    padding-top: 10px;
    color: #ece3d1;
    font-size: 15px;
  }
  
  .nav-links a:hover {
    color: #d4af37;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    max-width: 860px;
  }
  
  .eyebrow,
  .section-label {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .hero h1 {
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.03;
    max-width: 900px;
    margin-bottom: 24px;
  }
  
  .hero-text {
    max-width: 760px;
    font-size: 21px;
    color: #ddd1bb;
    margin-bottom: 34px;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
  }
  
  .button {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s ease;
  }
  
  .button-gold {
    background: #d4af37;
    color: #111;
  }
  
  .button-gold:hover {
    transform: translateY(-2px);
  }
  
  .button-secondary {
    border: 1px solid rgba(212, 175, 55, 0.34);
    color: #f4ede1;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .button-secondary:hover {
    border-color: #d4af37;
  }
  
  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .highlight {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.14);
    color: #e8deca;
    font-size: 14px;
  }
  
  .section {
    padding: 95px 0;
  }
  
  .section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    margin-bottom: 16px;
  }
  
  .section-text {
    color: #d2c6b1;
    font-size: 18px;
  }
  
  .max-text {
    max-width: 760px;
  }
  
  .intro-section {
    background: #0d0d11;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  }
  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 34px;
  }
  
  .option-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 20px;
    padding: 30px;
  }
  
  .option-card.featured {
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  }
  
  .option-kicker {
    color: #d4af37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  
  .option-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .option-card p {
    color: #d3c7b1;
    margin-bottom: 18px;
  }
  
  .option-card ul {
    padding-left: 18px;
    color: #ece2d0;
  }
  
  .option-card li {
    margin-bottom: 10px;
  }
  
  .dark-section {
    background: #101116;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
  }
  
  .card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover,
  .extra-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.38);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }
  
  .card h3,
  .extra-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .card p,
  .extra-card p {
    color: #d3c7b2;
    font-size: 16px;
  }
  
  .split-section {
    background: #0c0d10;
  }
  
  .split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .panel {
    background: #121318;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 22px;
    padding: 32px;
  }
  
  .pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }
  
  .pill {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 999px;
    background: #17181f;
    border: 1px solid rgba(212, 175, 55, 0.14);
    color: #ece2d0;
    font-size: 14px;
  }
  
  .usp-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }
  
  .usp-item {
    background: #181922;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 14px;
    padding: 16px 18px;
    color: #efe5d4;
  }
  
  .extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
  }
  
  .extra-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .contact-section {
    background: linear-gradient(180deg, #101117 0%, #090a0d 100%);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .contact-form {
    display: grid;
    gap: 16px;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 16px 18px;
    font-size: 16px;
  }
  
  .contact-form input,
  .contact-form textarea {
    background: #171820;
    color: #f4ede1;
    border: 1px solid rgba(255, 255, 255, 0.04);
  }
  
  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-form button {
    background: #d4af37;
    color: #111;
    font-weight: 700;
    cursor: pointer;
  }
  
  .footer {
    background: #07080a;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 28px 0;
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  
  .footer-right {
    color: #bcae95;
    text-align: right;
    max-width: 430px;
  }
  
  @media (max-width: 980px) {
    .intro-grid,
    .option-grid,
    .split-grid,
    .extras-grid,
    .contact-grid,
    .cards {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 760px) {
    .nav {
      flex-direction: row;
      align-items: center;
    }
  
    .nav-links {
      flex-wrap: wrap;
      gap: 12px 18px;
      padding-top: 0;
    }
  
    .hero-content {
      padding-top: 90px;
    }
  
    .hero-text {
      font-size: 18px;
    }
  
    .intro-grid,
    .option-grid,
    .split-grid,
    .extras-grid,
    .contact-grid,
    .cards {
      grid-template-columns: 1fr;
    }
  
    .section {
      padding: 75px 0;
    }
  
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-right {
      text-align: left;
    }
  }

  /* Actieve nav link */
.nav-links a.active {
  color: #d4af37;
}

/* Hamburger knop */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4ede1;
  transition: 0.3s ease;
}

#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  #hamburger { display: flex; }
  .hero { overflow: visible; }
  .nav-links { 
    display: none; 
    flex-direction: column; 
    width: 100%;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 760px) {
  .nav-links a {
    font-size: 22px;
    padding: 10px 0;
  }
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 7, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

#mobile-menu a {
  color: #f4ede1;
  font-size: 28px;
  font-weight: 700;
}

#mobile-menu a:hover {
  color: #d4af37;
}

#mobile-menu.open {
  display: flex;
}