@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    --h1: 700 clamp(2.9rem, 8vw, 6rem)/125% Montserrat, sans-serif;
    --h1-span: 300 clamp(1.75rem, 5vw, 4rem)/125% serif;
    --h2: 700 clamp(1.75rem, 4vw, 3.5rem)/125% Montserrat, sans-serif;
    --h2-span: 300 clamp(1.25rem, 3vw, 2.25rem)/175% serif;
    --h3: 600 clamp(1rem, 2vw, 1.7rem)/150% Montserrat, sans-serif;
    --h4: 500 clamp(1.1rem, 1.5vw, 1.3rem)/150% Montserrat, sans-serif;
    --p: 300 clamp(0.9rem, 1vw, 1.125rem)/165% Montserrat, sans-serif;
    --a: 300 clamp(0.9rem, 1vw, 1.125rem)/165% Montserrat, sans-serif;
    --as: 600 clamp(0.8rem, 0.95vw, 1rem)/165% Montserrat, sans-serif;
    --ass: 600 clamp(0.75rem, 0.85vw, 0.9rem)/165% Montserrat, sans-serif;

    --color-primary: #d4ae6e;
    --color-primary-dark: #9f7d47;
    --color-gray-ligt: #ccc;
    --border-radius-small: 4px;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #000;
    color: #fff;
}
body .container {
    padding: 0 clamp(5vw, 5vw, 4rem);
    max-width: 1600px;
    margin: 0 auto;
}




/* TYPOGRAPHY */
h1 {
    font: var(--h1);
    text-transform: uppercase;
}
h1 span {
    font: var(--h1-span);
    color: var(--color-primary);
    text-transform: none;
}
h2 {
    font: var(--h2);
    text-transform: uppercase;
}
h2 span {
    font: var(--h2-span);
    color: var(--color-primary);
    text-transform: none;
}
h3 {
    font: var(--h3);
}
h4 {
    font: var(--h4);
}
p {
    font: var(--p);
}
a {
    font: var(--a);
    color: inherit;
    text-decoration: none;
}
strong {
    border-bottom: solid 2px var(--color-primary);
    font-weight: 400;
    color: #fff;
}
@media (max-width: 600px) {
    h1 span {
        line-height: 1.6;
    }
}




.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    align-items: center;
    border: none;
    cursor: pointer;
    padding: clamp(0.85rem, 2.5vw, 1rem) clamp(1.25rem, 5vw, 2rem) clamp(0.8rem, 2.2vw, 0.9rem);
    font: var(--as);
    text-transform: uppercase;
    transition: .3s;
}
.btn svg {
    margin-top: -.2rem;
}
.btn-primary {
    background: var(--color-primary);
    color: #000;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}
.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}
.btn-large {
    width: 100%;
    justify-content: center;
    padding: clamp(0.9rem, 2.5vw, 1.1rem) clamp(1.5rem, 5vw, 2rem);
    margin-top: 1.5rem;
}
button {
    border: 0;
}




/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    z-index: 110;
}
.logo span {
    font-family: serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--color-primary);
    margin-bottom: -.55rem;
    text-transform: uppercase;
}
.logo img {
    height: auto;
    width: clamp(34px, 8vw, 40px);
}




/* ========== ORDER MODAL ========== */


/* ORDER MODAL / Overlay */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.order-modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* ORDER MODAL / Dialog */
.order-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: clamp(500px, 90vh, 900px);
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(2rem, 5vw, 3rem);
    padding-left: clamp(2.5rem, 5vw, 3.5rem);
}
.order-modal .order-modal-close {
    position: absolute;
    top: clamp(1rem, 2vw, 1.25rem);
    right: clamp(1rem, 2vw, 1.25rem);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-gray-ligt);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}
.order-modal .order-modal-close:hover {
    color: var(--color-primary);
    background: rgba(212, 174, 110, 0.12);
}
.order-modal .order-modal-title {
    font: var(--h4);
    color: #fff;
    margin-bottom: 0.75rem;
    padding-right: 3rem;
}
.order-modal .order-modal-product-name {
    font: 300 clamp(0.875rem, 1vw, 0.95rem)/165% Montserrat, sans-serif;
    color: var(--color-gray-ligt);
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    .order-modal .order-modal-title {
        margin-bottom: 0.5rem;
    }
    .order-modal .order-modal-product-name {
        margin-bottom: 1.25rem;
    }
}


/* ORDER MODAL / Success state */
.order-modal-success[hidden] {
    display: none !important;
}
.order-modal.is-success .order-modal-form-view {
    display: none !important;
}
.order-modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    animation: modalSuccessIn 0.45s ease-out forwards;
}
.order-modal-success-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    animation: modalSuccessCheck 0.6s ease-out 0.2s both;
}
.order-modal-success-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(212, 174, 110, 0.35));
}
.order-modal-success-title {
    font: var(--h4);
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.order-modal-success-text {
    font: 300 clamp(0.9rem, 1vw, 1rem)/165% Montserrat, sans-serif;
    color: var(--color-gray-ligt);
    max-width: 28ch;
    margin: 0 auto 1.5rem;
}
.order-modal-success .btn-large {
    margin-bottom: 0;
}
@keyframes modalSuccessIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes modalSuccessCheck {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ========== FORMS (order modal + contact) ========== */


/* FORMS / Layout */
.order-form .form-row,
.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.order-form .form-row .form-group,
.contact-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}
.order-form .form-group,
.contact-form .form-group {
    margin-bottom: 1.25rem;
}


/* FORMS / Labels */
.order-form label,
.contact-form label {
    display: block;
    font: var(--as);
    font-size: clamp(0.7rem, 0.9vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.5rem;
}


/* FORMS / Inputs & controls */
.order-form input,
.order-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: clamp(0.55rem, 1.5vw, 0.65rem) 1rem;
    font: 300 clamp(0.9rem, 1vw, 1rem)/165% Montserrat, sans-serif;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-small);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ccc' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}


/* FORMS / Placeholder & focus */
.order-form input::placeholder,
.order-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-gray-ligt);
}
.order-form input:focus,
.order-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.03);
}


/* FORMS / Textarea */
.order-form textarea {
    resize: vertical;
    min-height: clamp(72px, 15vw, 80px);
}
.contact-form textarea {
    resize: vertical;
    min-height: clamp(100px, 20vw, 120px);
}


/* FORMS / Submit */
.order-form .btn-large,
.contact-form .btn-large {
    margin-top: 0.5rem;
    margin-bottom: 0;
}


/* FORMS / Responsive */
@media (max-width: 480px) {
    .order-form .form-row,
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .order-form .form-row .form-group,
    .contact-form .form-row .form-group {
        margin-bottom: 1.25rem;
    }
    .order-form .form-row .form-group:last-child,
    .contact-form .form-row .form-group:last-child {
        margin-bottom: 0;
    }
}





/* ========== ANIMATIONS ========== */


/* ANIMATIONS / Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ANIMATIONS / Stagger (eigenschappen) */
.animate-stagger .eigenschap-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-stagger.is-visible .eigenschap-item {
    opacity: 1;
    transform: translateY(0);
}
.animate-stagger .eigenschap-item:nth-child(1) { transition-delay: 0.5s; }
.animate-stagger .eigenschap-item:nth-child(2) { transition-delay: 0.75s; }
.animate-stagger .eigenschap-item:nth-child(3) { transition-delay: 1s; }
.animate-stagger .eigenschap-item:nth-child(4) { transition-delay: 1.25s; }
.animate-stagger .eigenschap-item:nth-child(5) { transition-delay: 1.25s; }
.animate-stagger .eigenschap-item:nth-child(6) { transition-delay: 1s; }
.animate-stagger .eigenschap-item:nth-child(7) { transition-delay: 0.75s; }
.animate-stagger .eigenschap-item:nth-child(8) { transition-delay: 0.5s; }


/* ANIMATIONS / Carousel (kenmerken) */
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(1) { transition-delay: 0.25s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(2) { transition-delay: 0.5s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(3) { transition-delay: 0.75s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(4) { transition-delay: 1s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(5) { transition-delay: 1.25s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(6) { transition-delay: 1.5s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(7) { transition-delay: 1.75s; }
#product .kenmerken .carousel-container.is-visible .carousel-track .item:nth-child(8) { transition-delay: 2s; }