  :root {
      --black: #111111;
      --white: #f4f2ee;
      --accent: #c8883a;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--black);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 3rem;
      height: 64px;
      background: var(--black);
      border-bottom: 3px solid var(--accent);
    }

    .nav-logo img {
      height: 36px;
      width: auto;
      display: block;
      filter: invert(1);
    }

    nav ul { list-style: none; display: flex; gap: 0; }

    nav ul li a {
      text-decoration: none;
      color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      padding: 0 1.4rem;
      height: 64px;
      display: flex;
      align-items: center;
      border-left: 1px solid #333;
      transition: background 0.15s, color 0.15s;
    }

    nav ul li:last-child a { border-right: 1px solid #333; }
    nav ul li a:hover { background: var(--accent); color: var(--black); }

    /* ─── TAAL SWITCHER ─── */
    .lang-switcher {
      display: flex;
      gap: 0;
      border-left: 1px solid #333;
    }

    .lang-switcher button {
      background: none;
      border: none;
      color: rgba(255,255,255,0.4);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      padding: 0 0.8rem;
      height: 64px;
      cursor: pointer;
      border-right: 1px solid #333;
      transition: background 0.15s, color 0.15s;
    }

    .lang-switcher button:hover,
    .lang-switcher button.active {
      background: var(--accent);
      color: var(--black);
    }

    /* ─── HERO ─── */
      .lamp-details {
        margin-bottom: 2rem;
      }

      .lamp-detail-images {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
      }

      .lamp-detail-images img {
        width: 50%;
        border-radius: 6px;
      }

      .lamp-detail-desc {
        line-height: 1.6;
        color: #444;
        margin-bottom: 2rem;
      }


    .hero {
    position: relative;
    width: 100%;
    min-height: 800px; /* perfect voor 1080x1080 renders */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; /* knoppen onderin */
    justify-content: center;
    padding-bottom: 3rem; /* ruimte onder de knop */
    }

    .hero-content {
        display: flex;
        justify-content: center;
    }

    .hero-btn:hover {
        background: #a06a2f;
    }
    .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

    .hero-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr); /* 2 kolommen op desktop */
          gap: 40px;
          padding: 4rem 3rem;
          background: var(--black);
      }

      .hero-item {
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .hero-image {
          width: 100%;
          aspect-ratio: 1 / 1; /* vierkant */
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .hero-image img,
      .lamp-detail-images img {
          width: 100%;
          height: 95%; /* kies 240–320 afhankelijk van smaak */
          object-fit: cover;
          object-position: center;
          border-radius: 12px;
          display: block;
      }



      .hero-actions {
          margin-top: 1.5rem;
          display: flex;
          justify-content: center;
      }

      .hero-btn {
          background: var(--accent);
          color: var(--white);
          padding: 1rem 2.5rem;
          font-family: 'Bebas Neue', sans-serif;
          font-size: 1.3rem;
          letter-spacing: 0.12em;
          border: none;
          cursor: pointer;
          border-radius: 4px;
          transition: background 0.2s;
      }

      .hero-btn:hover {
          background: #a06a2f;
      }

/*  Hier gebeurt het: onder elkaar op kleine schermen */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr; /* stacken */
        gap: 2rem;
    }
}

    .btn-primary {
      background: var(--white);
      color: var(--black);
      padding: 0.85rem 2rem;
      text-decoration: none;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.14em;
      border: 2px solid var(--white);
      transition: background 0.15s, border-color 0.15s;
      cursor: pointer;
    }

    .btn-primary:hover { background: var(--accent); border-color: var(--accent); }

    .btn-outline {
      color: var(--white);
      text-decoration: none;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.14em;
      border: 2px solid rgba(255,255,255,0.3);
      padding: 0.85rem 2rem;
      transition: border-color 0.15s, color 0.15s;
      cursor: pointer;
    }

    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    /* ─── MODAL ─── */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      align-items: center;
      justify-content: center;
      padding: 20px; /* safe spacing for very small viewports */
    }

    .modal.active { display: flex; }

    .modal-content {
      background-color: var(--white);
      margin: auto;
      padding: 3rem;
      border: 1px solid #ddd;
      width: 90%;
      max-width: 800px;
      border-radius: 4px;
      /* allow the modal content itself to scroll when it exceeds viewport height */
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      /* respect safe area and leave extra space for on-screen keyboards */
      padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      border-bottom: 2px solid var(--black);
      padding-bottom: 1rem;
    }

    .modal-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.06em;
      color: var(--black);
      margin: 0;
    }

    .modal-close {
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--black);
      transition: color 0.15s;
    }

    .modal-close:hover { color: var(--accent); }

    .form-group {
      margin-bottom: 1.5rem;
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      color: var(--black);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
    }

    .form-group input {
      padding: 0.75rem;
      border: 1px solid #ccc;
      font-family: 'Barlow', sans-serif;
      font-size: 1rem;
      border-radius: 2px;
      transition: border-color 0.15s;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(200, 136, 58, 0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .order-summary {
      background: #f9f9f9;
      border-left: 4px solid var(--accent);
      padding: 1.5rem;
      margin-bottom: 2rem;
      border-radius: 2px;
    }

    .order-summary p {
      margin: 0.5rem 0;
      font-size: 0.95rem;
      color: #444;
    }

    .order-summary-total {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      color: var(--black);
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #ddd;
    }

    .modal-buttons {
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
    }

    .btn-modal {
      padding: 0.75rem 1.5rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      border: none;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-modal-primary {
      background: var(--black);
      color: var(--white);
    }

    .btn-modal-primary:hover { background: var(--accent); }

    .btn-modal-secondary {
      background: #eee;
      color: var(--black);
    }

    .btn-modal-secondary:hover { background: #ddd; }

    .hero-right {
      position: relative;
      overflow: hidden;
      background: #1a1208;
    }

    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 8s ease;
    }

    .hero-right:hover img { transform: scale(1.04); }

    /* ─── SHARED ─── */
    .section-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.35em;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 4vw, 4.5rem);
      line-height: 0.95;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    /* ─── FEATURES ─── */
    .features {
      background: var(--black);
      color: var(--white);
      padding: 6rem;
    }

    .features .section-title { color: var(--white); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 4rem;
      border: 1px solid #2a2a2a;
    }

    .feature-card {
      padding: 2.5rem;
      border-right: 1px solid #2a2a2a;
    }

    .feature-card:last-child { border-right: none; }

    .feature-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.8rem;
    }

    .feature-card p {
      font-size: 0.92rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.5);
    }

    /* ─── TWO COL ─── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .two-col-img {
      overflow: hidden;
      background: #1a1208;
    }

    .two-col-img img {
      width: 100%;
      height: 100%;
      min-height: 480px;
      object-fit: cover;
      display: block;
    }

    .two-col-content {
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 4px solid var(--black);
    }

    .two-col-content p {
      font-size: 1rem;
      line-height: 1.85;
      color: #444;
      margin-bottom: 1rem;
    }

    /* ─── EXPLODED ─── */
    .exploded {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .exploded-img {
      background: #111;
      overflow: hidden;
    }

    .exploded-img img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      display: block;
      opacity: 0.9;
    }

    .exploded-content {
      background: var(--white);
      border-left: 4px solid var(--black);
      padding: 6rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .exploded-content p {
      font-size: 0.97rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 1rem;
    }

    .parts-list {
      margin-top: 2rem;
      border-top: 1px solid #ccc;
    }

    .part-item {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1rem 0;
      border-bottom: 1px solid #ccc;
      font-size: 0.9rem;
      color: #333;
    }

    .part-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dot-3d  { background: #5cb87a; }
    .dot-cnc { background: #4a9fcb; }
    .dot-std { background: var(--accent); }

    .part-item strong { font-weight: 500; }

    /* ─── MAKER ─── */
    /* MAKER SECTION */
.maker {
    padding: 6rem 3rem;
    background: var(--black);
    color: var(--white);
}

/* Header */
.maker-header {
    grid-column: 1 / -1; /* header over beide kolommen */
    text-align: center;
    margin-bottom: 3rem;
}

.maker-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.08em;
    margin: 0;
}

.maker-divider {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

/* Grid layout */
.maker-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Tekst links */
.maker-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maker-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
    color: var(--accent);
}

.maker-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Foto rechts */
.maker-right img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    background: #222;
}

/* Mobiel */
@media (max-width: 900px) {
    .maker-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .maker-right img {
        max-width: 400px;
        margin: 0 auto;
    }
}


    /* ─── CONTACT ─── */
    .contact {
      background: var(--black);
      color: var(--white);
      /* reduce top/bottom padding to tighten space above 'Bereikbaar via' */
      padding: 3.5rem 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      /* smaller vertical gap, keep horizontal gap */
      gap: 1.2rem 6rem;
      align-items: center;
    }

    /* Ensure the 'Bereikbaar via' label spans the full width above columns */
    .contact > .section-label {
      grid-column: 1 / -1;
      margin-bottom: 0.6rem;
      font-size: 0.95rem;
    }

    /* Compact the contact block: tighter line-height and small spacings */
    .contact-main .contact-detail {
      line-height: 1.45;
      margin-bottom: 0.4rem;
      font-size: 0.98rem;
    }

    .contact-main a.contact-email { display: inline-block; margin-bottom: 0.35rem; }

    .contact-main a { line-height: 1.4; }

    .contact .section-title { color: var(--white); }

    .contact-left p {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.5);
    }

    .contact-right {
      border: 1px solid #2a2a2a;
      padding: 3rem;
    }

    .contact-email {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.08em;
      color: var(--accent);
      text-decoration: none;
      display: block;
      margin-bottom: 2rem;
      transition: color 0.15s;
    }

    .contact-email:hover { color: var(--white); }

    .contact-detail {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .btn-white {
      background: var(--white);
      color: var(--black);
      padding: 0.85rem 2rem;
      text-decoration: none;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 0.14em;
      display: inline-block;
      transition: background 0.15s;
    }

    .btn-white:hover { background: var(--accent); }

    /* ─── FOOTER ─── */
    footer {
      background: #0a0a0a;
      color: rgba(255,255,255,0.22);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      border-top: 3px solid var(--accent);
    }

    footer img {
      height: 22px;
      filter: brightness(0.3);
      display: block;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-left > * { animation: fadeUp 0.7s ease both; }
    .hero-left > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-left > *:nth-child(2) { animation-delay: 0.18s; }
    .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
    .hero-left > *:nth-child(4) { animation-delay: 0.42s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 1rem; }
      nav ul li a { font-size: 0.9rem; padding: 0 0.7rem; }
      .lang-switcher button { padding: 0 0.5rem; font-size: 0.75rem; }

      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 5rem 2rem 3rem; }

      /* Hero afbeelding: vaste hoogte vervangen door aspect-ratio */
      .hero-right {
        height: auto;
        aspect-ratio: 4 / 3;
        min-height: unset;
      }
      .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }

      .features, .maker { padding: 4rem 2rem; }

      .features-grid { grid-template-columns: 1fr; }
      .feature-card { border-right: none; border-bottom: 1px solid #2a2a2a; }
      .feature-card:last-child { border-bottom: none; }

      /* Two-col en exploded: afbeelding boven tekst, nette hoogte */
      .two-col, .exploded { grid-template-columns: 1fr; }

      .two-col-img {
        aspect-ratio: 4 / 3;
        height: auto;
      }
      .two-col-img img {
        width: 100%;
        height: 100%;
        min-height: unset;
        object-fit: cover;
      }

      .exploded-img {
        aspect-ratio: 4 / 3;
        height: auto;
      }
      .exploded-img img {
        width: 100%;
        height: 100%;
        min-height: unset;
        object-fit: cover;
        object-position: center top;
      }

      .two-col-content { padding: 3rem 2rem; border-left: none; border-top: 4px solid var(--black); }
      .exploded-content { padding: 3rem 2rem; border-left: none; border-top: 4px solid var(--black); }

      .maker-grid { grid-template-columns: 1fr; gap: 3rem; }

      .contact { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 1.2rem; }

      footer { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1.5rem; }

      /* Make form rows stack on mobile */
      .form-row { grid-template-columns: 1fr; }
      .form-group input { width: 100%; box-sizing: border-box; }
      .modal-content { padding: 2rem 2rem 4rem; }
    }