 :root {
      --black: #0a0a0a;
      --black-soft: #111111;
      --black-mid: #1a1a1a;
      --black-light: #242424;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-pale: #f5e4b0;
      --gold-dim: rgba(201,168,76,0.15);
      --gold-dim2: rgba(201,168,76,0.08);
      --white: #f5f0e8;
      --white-soft: #e8e0d0;
      --text-muted: #888;
      --radius: 4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      line-height: 1.5;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6,
    p, li, a, span, button,
    input, textarea, select {
      line-height: 1.35;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gold-dim);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--gold);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--white-soft);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: var(--black) !important;
      padding: 0.5rem 1.2rem;
      font-weight: 700;
      border-radius: var(--radius);
      transition: background 0.3s !important;
    }

    .nav-cta:hover { background: var(--gold-light) !important; }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,10,10,0.98);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }

    .mobile-menu a:hover { color: var(--gold); }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      font-size: 2rem;
      color: var(--gold);
      cursor: pointer;
      background: none;
      border: none;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: visible;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
    }

    .hero-line {
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--gold));
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid var(--gold-dim);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero-badge::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.8); }
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 10vw, 8rem);
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: -0.01em;
      animation: fadeUp 0.9s ease 0.1s both;
    }

    h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-slogan {
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      color: var(--white-soft);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 1.5rem;
      animation: fadeUp 1s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      margin-top: 3rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 1s ease 0.3s both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      padding: 0.9rem 2.2rem;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 0.9rem 2.2rem;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s, transform 0.2s;
      display: inline-block;
    }

    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      animation: fadeUp 1s ease 0.5s both;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollDown 2s ease infinite;
    }

    @keyframes scrollDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── SECTIONS COMMON ── */
    section { padding: 6rem 2rem; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.3;
    }

    .section-title em { font-style: italic; color: var(--gold); }

    .divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 1.5rem 0;
    }

    /* ── STATS BAND ── */
    #stats {
      background: var(--black-soft);
      border-top: 1px solid var(--gold-dim);
      border-bottom: 1px solid var(--gold-dim);
      padding: 3rem 2rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1.2;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    /* ── DIENSTEN ── */
    #diensten { background: var(--black); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .service-card {
      background: var(--black-soft);
      border: 1px solid var(--gold-dim);
      border-radius: 8px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .service-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
    .service-card:hover::before { opacity: 1; }

    .service-card.featured {
      border-color: rgba(201,168,76,0.4);
      background: linear-gradient(135deg, var(--black-soft) 0%, rgba(201,168,76,0.05) 100%);
    }

    .service-tag {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-dim);
      padding: 0.2rem 0.6rem;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 1.2rem;
    }

    .service-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 0.8rem;
    }

    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--gold);
      font-style: italic;
      margin-bottom: 1.2rem;
    }

    .service-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .service-features li {
      font-size: 0.82rem;
      color: var(--white-soft);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .service-features li::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.6rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    /* ── WAAROM ── */
    #waarom { background: var(--black-mid); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .why-item {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--gold-dim);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      background: var(--gold-dim2);
    }

    .why-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .why-text p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── FAQ ── */
    #faq { background: var(--black); }

    .faq-list {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--gold-dim);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      padding: 1.5rem 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: color 0.3s;
    }

    .faq-question:hover { color: var(--gold); }

    .faq-icon {
      color: var(--gold);
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.open .faq-answer { max-height: 300px; }

    .faq-answer p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
      padding-bottom: 1.5rem;
    }

    /* ── CONTACT ── */
    #contact { background: var(--black-mid); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-item-text a,
    .contact-item-text p {
      display: block;
      margin-top: 0.15rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      border: 1px solid var(--gold-dim);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      background: var(--gold-dim2);
    }

    .contact-item-text span {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }

    .contact-item-text a, .contact-item-text p {
      font-size: 0.9rem;
      color: var(--white-soft);
      text-decoration: none;
      transition: color 0.3s;
    }

    .contact-item-text a:hover { color: var(--gold); }

    .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 1rem;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.7rem 1.2rem;
      border: 1px solid var(--gold-dim);
      border-radius: var(--radius);
      color: var(--white-soft);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: all 0.3s;
      background: var(--gold-dim2);
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: var(--gold-dim);
    }

    .social-btn.whatsapp:hover {
      border-color: #25D366;
      color: #25D366;
      background: rgba(37,211,102,0.08);
    }

    /* ── FORM ── */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--black-light);
      border: 1px solid var(--gold-dim);
      border-radius: var(--radius);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      padding: 0.85rem 1rem;
      transition: border-color 0.3s;
      outline: none;
      width: 100%;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }

    .form-group select option { background: var(--black-mid); }

    .form-status {
      font-size: 0.85rem;
      padding: 0.7rem 1rem;
      border-radius: var(--radius);
      display: none;
    }

    .form-status.success { background: rgba(37,211,102,0.1); color: #25D366; border: 1px solid rgba(37,211,102,0.3); display: block; }
    .form-status.error { background: rgba(255,80,80,0.1); color: #ff5050; border: 1px solid rgba(255,80,80,0.3); display: block; }

    /* ── FOOTER ── */
    footer {
      background: var(--black-soft);
      border-top: 1px solid var(--gold-dim);
      padding: 3rem 2rem;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.05em;
      margin-bottom: 0.8rem;
    }

    .footer-slogan {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      list-style: none;
      margin-bottom: 2rem;
    }

    .footer-nav a {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-nav a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(136,136,136,0.5);
    }

    /* ── FLOATING BUTTONS ── */
    .float-buttons {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      z-index: 50;
    }

    .float-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.3rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s;
    }

    .float-btn:hover { transform: scale(1.1); }

    .float-wa { background: #25D366; }
    .float-li { background: #0a66c2; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    }

    @media (max-width: 600px) {
      section { padding: 4rem 1.2rem; }
      h1 { font-size: 3rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .float-buttons { bottom: 1.2rem; right: 1.2rem; }
      .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }