:root {
    --bordeaux-rood: #500f0e;
    --olijfgroen: #84794b;
    --rose: #ebe1e3;
    --groen-grijs: #cec5b2;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.template-homepage {
    background: var(--rose);
    color: var(--bordeaux-rood);
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.5;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 0.25rem 4vw;
    background: #f7f7f7;
    border-bottom: 1px solid rgba(80, 15, 14, 0.15);
    backdrop-filter: blur(4px);
}

.brand {
    display: inline-block;
}

.brand img {
    display: block;
    width: clamp(90px, 10vw, 140px);
    height: auto;
}

.menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger-btn {
    display: none;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.site-nav {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--bordeaux-rood);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: var(--olijfgroen);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.84rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--bordeaux-rood);
    border-color: var(--bordeaux-rood);
    color: var(--rose);
}

.btn-primary:hover {
    background: transparent;
    color: var(--bordeaux-rood);
}

.btn-secondary {
    background: transparent;
    border-color: var(--bordeaux-rood);
    color: var(--bordeaux-rood);
}

.btn-secondary:hover {
    background: var(--bordeaux-rood);
    color: var(--rose);
}

.hero {
    min-height: 70vh;
    padding: 6rem 4vw 5rem;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    background:
        linear-gradient(120deg, rgba(80, 15, 14, 0.72), rgba(80, 15, 14, 0.56)),
        var(--hero-image, url("../images/hero.1341b2dce1b3.jpeg")) center / cover no-repeat;
    color: var(--rose);
}

.eyebrow,
.section-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--olijfgroen);
}

.hero h1 {
    margin: 0.75rem 0 1rem;
    max-width: 18ch;
    font-size: clamp(2rem, 5vw, 4.1rem);
    line-height: 1.08;
}

.hero-copy {
    max-width: 56ch;
    margin: 0 0 1.8rem;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero .eyebrow {
    color: var(--rose);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.hero h1,
.hero .hero-copy {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero .btn-secondary {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(80, 15, 14, 0.25);
}

.hero .btn-secondary:hover {
    background: var(--rose);
    color: var(--bordeaux-rood);
}

.marquee {
    background: var(--bordeaux-rood);
    color: var(--rose);
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(235, 225, 227, 0.2);
    border-bottom: 1px solid rgba(235, 225, 227, 0.2);
}

.marquee-track {
    display: inline-flex;
    gap: 2.4rem;
    padding: 0.9rem 0;
    animation: scroll 26s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.8rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 5.5rem 4vw;
}

.section h2 {
    margin: 0.6rem 0 1rem;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.15;
}

.section p {
    margin: 0;
    max-width: 65ch;
}

.about {
    background: var(--rose);
}

.about-copy {
    margin-top: 1rem !important;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--bordeaux-rood);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.79rem;
    text-decoration: underline;
}

.services {
    background-color: #cec5b2;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.35) 1px, transparent 1.3px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(80, 15, 14, 0.05));
    background-size: 12px 12px, 100% 100%;
}

.services .section-kicker {
    color: rgba(80, 15, 14, 0.7);
    text-align: center;
}

.services h2 {
    text-align: center;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
    margin-top: 2rem;
}

.service-card {
    position: relative;
    text-align: center;
}

.photo-pin {
    width: 26px;
    height: 26px;
    margin: 0 auto -13px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff4cd, #bfa66b 70%);
    border: 1px solid rgba(80, 15, 14, 0.15);
    position: relative;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(80, 15, 14, 0.2);
}

.pinned-photo {
    margin: 0;
    background: #f5f5f5;
    padding: 12px 12px 16px;
    border: 1px solid rgba(80, 15, 14, 0.22);
    box-shadow: 0 10px 18px rgba(80, 15, 14, 0.2);
}

.pinned-photo img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(80, 15, 14, 0.15);
}

.pinned-photo figcaption {
    margin-top: 0.8rem;
    font-size: clamp(1.15rem, 2vw, 1.9rem);
}

.pin-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.72rem 1.5rem;
    background: #cf89aa;
    color: #fff7fa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    text-decoration: none;
    border: 1px solid rgba(80, 15, 14, 0.18);
}

.pin-btn:hover {
    background: var(--bordeaux-rood);
}

.portfolio {
    background: var(--rose);
    --portfolio-gap: 0.8rem;
    --slides-per-view: 3;
}

.portfolio-slider-shell {
    position: relative;
    overflow: visible;
}

.portfolio-viewport {
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    touch-action: pan-y;
    cursor: grab;
}

.portfolio-viewport::-webkit-scrollbar {
    display: none;
}

.portfolio-viewport.is-dragging {
    cursor: grabbing;
}

.portfolio-grid {
    margin-top: 2rem;
    display: flex;
    gap: var(--portfolio-gap);
    user-select: none;
}

.portfolio-note {
    margin-top: 0.4rem !important;
    max-width: 80ch !important;
}

.slider-actions {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0.6rem;
    pointer-events: none;
    z-index: 20;
}

.slider-actions button {
    background: #ffffff;
    border: 1px solid rgba(80, 15, 14, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: var(--bordeaux-rood);
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 21;
}

.slider-actions button:hover {
    color: var(--olijfgroen);
}

.slider-actions button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.portfolio-item {
    margin: 0;
    background: var(--white);
    border: 1px solid rgba(80, 15, 14, 0.15);
    flex: 0 0 calc((100% - (var(--portfolio-gap) * (var(--slides-per-view) - 1))) / var(--slides-per-view));
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

@media (min-width: 1001px) {
    .portfolio-item img {
        height: 560px;
        object-fit: contain;
        background: #ffffff;
    }
}

.portfolio-item figcaption {
    padding: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}

.product-title-link {
    color: var(--bordeaux-rood);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.product-title-link:hover {
    border-bottom-color: currentColor;
}

.inner-page-shell {
    background: var(--rose);
}

.inner-page-main {
    min-height: 60vh;
    max-width: 1100px;
    margin: 0 auto;
}

.page-hero {
    background: linear-gradient(180deg, rgba(206, 197, 178, 0.5), rgba(235, 225, 227, 0));
    padding-bottom: 2.2rem;
}

.page-hero h1 {
    margin-top: 0.5rem;
    max-width: 18ch;
}

.page-intro {
    margin-top: 0.5rem !important;
    font-size: 1.05rem;
}

.page-content {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.wk-product-page {
    padding-top: 2rem;
}

.wk-breadcrumbs {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    font-size: 0.86rem;
    margin-bottom: 1rem;
    color: rgba(80, 15, 14, 0.75);
}

.wk-breadcrumbs a {
    color: var(--bordeaux-rood);
    text-decoration: none;
}

.wk-breadcrumbs a:hover {
    text-decoration: underline;
}

.wk-product-top {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
}

.wk-gallery {
    display: grid;
    gap: 0.8rem;
}

.wk-main-image-wrap {
    background: #fff;
    border: 1px solid rgba(80, 15, 14, 0.18);
    border-radius: 8px;
    overflow: hidden;
}

.wk-main-image {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

.wk-thumbs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.wk-thumb {
    border: 1px solid rgba(80, 15, 14, 0.2);
    border-radius: 6px;
    padding: 0;
    background: #fff;
    width: 74px;
    height: 98px;
    cursor: pointer;
    overflow: hidden;
}

.wk-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wk-thumb.is-active {
    border-color: var(--bordeaux-rood);
    box-shadow: 0 0 0 2px rgba(80, 15, 14, 0.12);
}

.wk-buybox {
    background: #fff;
    border: 1px solid rgba(80, 15, 14, 0.18);
    border-radius: 8px;
    padding: 1.2rem;
    position: sticky;
    top: 96px;
}

.wk-stock-note {
    margin: 0 0 0.5rem !important;
    font-size: 0.86rem;
    color: rgba(80, 15, 14, 0.8);
}

.wk-buybox h1 {
    margin: 0;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.12;
}

.wk-price {
    margin-top: 0.7rem !important;
    font-size: 1.45rem;
    font-weight: 700;
}

.wk-intro {
    margin-top: 0.9rem !important;
}

.wk-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.9rem;
}

.wk-meta {
    margin-top: 0.8rem !important;
    font-size: 0.82rem;
    color: rgba(80, 15, 14, 0.82);
}

.wk-product-description {
    margin-top: 1.1rem;
    max-width: 780px;
}

.wk-product-description h2 {
    margin-top: 0.1rem;
    margin-bottom: 0.6rem;
}

.page-card {
    background: #fff;
    border: 1px solid rgba(80, 15, 14, 0.16);
    box-shadow: 0 12px 28px rgba(80, 15, 14, 0.08);
    padding: 1.7rem;
    border-radius: 14px;
}

.page-card p {
    margin-bottom: 1rem;
}

.product-layout {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
}

.product-main-image {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.product-main-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(80, 15, 14, 0.14);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(80, 15, 14, 0.14);
}

.product-details {
    background: rgba(235, 225, 227, 0.55);
    border: 1px solid rgba(80, 15, 14, 0.12);
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
}

.product-details .btn {
    margin-top: 0.6rem;
}

.product-gallery-head h2 {
    margin: 1.5rem 0 0.6rem;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.product-gallery {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gallery-item {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(80, 15, 14, 0.14);
    border-radius: 8px;
    overflow: hidden;
}

.product-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.testimonials {
    background: var(--bordeaux-rood);
    color: var(--rose);
}

.testimonials h2 {
    color: var(--rose);
}

.testimonial-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-grid blockquote {
    margin: 0;
    padding: 1.4rem;
    border: 1px solid rgba(235, 225, 227, 0.25);
    background: rgba(235, 225, 227, 0.08);
}

.testimonial-grid cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: var(--groen-grijs);
}

.download {
    background: var(--groen-grijs);
}

.download-inner {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.download p {
    margin: 0 0 1.1rem;
}

.download img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(80, 15, 14, 0.18);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    padding: 3rem 4vw;
    background: var(--bordeaux-rood);
    color: var(--rose);
}

.site-footer h2 {
    margin: 0 0 0.5rem;
}

.site-footer p {
    margin: 0;
}

.contact-details {
    display: grid;
    gap: 0.45rem;
    justify-items: end;
}

.contact-details a {
    color: var(--rose);
    text-decoration: none;
}

.contact-details strong,
.contact-details span {
    color: var(--rose);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.instagram-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.contact-details a:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        --slides-per-view: 2;
    }

    .download-inner {
        grid-template-columns: 1fr;
    }

    .wk-product-top {
        grid-template-columns: 1fr;
    }

    .wk-buybox {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 0.6rem;
        position: sticky;
    }

    .hamburger-btn {
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        padding: 0.4rem;
        cursor: pointer;
    }

    .hamburger-btn span {
        width: 22px;
        height: 2px;
        background: var(--bordeaux-rood);
        border-radius: 2px;
        transition: transform 0.2s ease;
    }

    .header-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f7f7f7;
        border-bottom: 1px solid rgba(80, 15, 14, 0.15);
        padding: 0.8rem 4vw 1rem;
        flex-direction: column;
        align-items: flex-start;
        z-index: 9;
    }

    .menu-toggle:checked ~ .header-menu {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
    }

    .header-cta {
        margin-top: 0.25rem;
    }

    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .portfolio {
        --slides-per-view: 1;
    }

    .slider-actions button {
        width: 34px;
        height: 34px;
    }

    .service-grid {
        gap: 1.5rem;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-details {
        justify-items: start;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        align-items: start;
    }

    .product-main-image img {
        height: auto;
        max-height: 500px;
    }

    .product-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .wk-main-image {
        height: 460px;
    }

    .wk-thumb {
        width: 64px;
        height: 86px;
    }
}
