body {
    background:
        linear-gradient(120deg, rgba(75, 151, 88, 0.07) 0 1px, transparent 1px 100%),
        linear-gradient(145deg, #F5F1ED 0%, #f9f5ee 48%, #edf5ea 100%);
    background-size: 42px 42px, auto;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

ul {
    display: flex;
    align-items: center;
    gap: 5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.3s;
}

a:hover {
    font-size: 2.8vh;
    font-weight: 600;
}

.navigatie a:hover {
    font-size: 1.2rem;
    transform: translateY(-2px);
}

header {
    height: 5.5rem;
    background-color: #EDE7DF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    padding: 0 1rem;
    border-bottom: 1px solid #E5E1DC;
    top: 0;
    z-index: 20;
    box-shadow: 0 10px 22px rgba(134, 115, 94, 0.08);
}

.logo-link {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
}

.logo {
    width: 9rem;
    height: 5.5rem;
    display: block;
}

.navigatie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 25.5rem 0 9rem;
}

.navigatie ul {
    gap: clamp(1.25rem, 3vw, 5rem);
}

.menu-knop {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background-color: #d4a373;
    box-shadow: 0 8px 18px rgba(134, 115, 94, 0.16);
    cursor: pointer;
}

.menu-knop span {
    display: block;
    width: 1.35rem;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-knop.open span:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
}

.menu-knop.open span:nth-child(2) {
    opacity: 0;
}

.menu-knop.open span:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
}

.line1 {
    display: block;
    background-color: black;
    width: 0.5px;
    height: 2.5rem;
}

.button1 {
    background-color: #D4A373;
    color: #fff;
    width: 17%;
    min-width: 13rem;
    height: 4.5vh;
    border: 1px solid #4B9758;
    border-radius: 10px;
    position: absolute;
    right: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.button1:hover {
    background-color: #fff;
    color: #D4A373;
    transform: translateY(-2px);
}

.header-actions {
    position: absolute;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .button1,
.header-actions .button-offerte {
    box-sizing: border-box;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 2.9rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

.header-actions .button1 {
    position: relative;
    inset: auto;
    border: 1px solid rgba(212, 163, 115, 0.45);
    background: linear-gradient(135deg, #D4A373 0%, #b9824e 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(143, 98, 54, 0.2);
}

.header-actions .button1::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -55%;
    width: 42%;
    height: 180%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(18deg);
    transition: left 0.45s ease;
}

.header-actions .button1:hover {
    background: linear-gradient(135deg, #e0b07d 0%, #c18d58 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(143, 98, 54, 0.28);
    font-size: 0.95rem;
}

.header-actions .button1:hover::before {
    left: 125%;
}

.header-actions .button-offerte {
    border: 1px solid rgba(23, 63, 29, 0.22);
    background: linear-gradient(135deg, #173f1d 0%, #4B9758 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 63, 29, 0.2);
}

.header-actions .button-offerte:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #214f27 0%, #5aa767 100%);
    color: #fff;
    font-size: 0.95rem;
}

.banner {
    width: 100%;
    height: 50vh;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 98%;
    height: 98%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 1% 1%;
    border-radius: 50px;
    opacity: 0.9;
}

.banner-text {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    text-align: left;
    opacity: 0.8;
}

.banner-text h1 {
    margin: 0;
    font-size: 2.2rem;
    font-family: 'Pontano Sans', sans-serif;
    font-weight: 700;
}

.banner-subtext {
    width: 95%;
    margin: 0.5rem 1% 0 1%;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #878787;
    text-align: right;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    width: 98%;
}

.tekst1 {
    grid-column: 1 / 7;
    grid-row: 1;
    margin-left: 8%;
    margin-top: 3%;
}

.tekst1 h2 {
    font-family: 'Poltawski Nowy', serif;
    font-weight: 700;
    font-size: 4vh;
}

.tekst1 p {
    font-family: 'Poiret One', sans-serif;
    font-weight: 400;
    font-size: 2.7vh;
}

.tekst2 {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 8%;
    margin-top: 10%;
    border: 1px solid black;
    background-color: #DCD2C8;
    height: 80vh;
    border-radius: 5vh;
    width: 90%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.tekst2 h2 {
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 4vh;
}

.tekst2 ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
}

.tekst2 li {
    font-family: 'Playpen Sans Thai', sans-serif;
    font-weight: 400;
    font-size: 3vh;
}

.visual {
    grid-column: 1 / 7;
    grid-row: 2;
    margin-left: 8%;
}

.tekst3 {
    grid-column: 8 / 13;
    grid-row: 2;
    margin-top: 50vh;
}

.tekst3 h2 {
    font-family: 'Quando', serif;
    font-size: 4vh;
}

.tekst3 p {
    font-family: 'Poltawski Nowy', serif;
    font-size: 3vh;
}

.span2 {
    background-color: black;
    grid-column: 2 / 12;
    margin-top: 10vh;
    height: 1px;
}

.tekst4{
    grid-column: 2 / 8;
    grid-row: 4;
}

.tekst4 h2{
    font-family: 'Quando', serif;
    font-size: 4.5vh;
}

.tekst4 p{
    font-family: 'Poltawski Nowy', serif;
    font-size: 3vh;
}

.img2,
.img3 {
    width: 90%;
    height: 100%;
    border-radius: 6vh;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

.visual1{
    grid-column: 8 / 13;
    grid-row: 4;
    align-self: start;
}

.button2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 5vh;
    border-radius: 17px;
    font-family: 'Poltawski Nowy', serif;
    font-size: 2.5vh;
    background: linear-gradient(135deg, #84BF83 0%, #5f9f68 100%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #ffffff;
    text-decoration: none;
    margin-left: 10%;
    margin-top: 4vh;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(95, 159, 104, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.button2::before{
    content: "";
    position: absolute;
    top: -20%;
    left: -120%;
    width: 55%;
    height: 140%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(12deg);
    transition: left 0.45s ease;
}

.button2:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 30px rgba(95, 159, 104, 0.38);
    letter-spacing: 0.04em;
}

.button2:hover::before{
    left: 130%;
}

.button2:active{
    transform: translateY(-1px) scale(0.99);
}

.footer {
    background-color: #173f1d;
    margin-top: 6rem;
    padding: 1rem 1.7rem 0.85rem 1.7rem;
}

.footer-title {
    margin: 0;
    text-align: center;
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
    font-size: 1.8rem;
}

.footer-line {
    display: block;
    width: 92%;
    height: 1px;
    background-color: #f3eee5;
    margin: 1rem auto 1.3rem auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
}

.logo-footer {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.footer-heading,
.footer-contact p,
.footer-links a,
.footer-social a,
.footer-copy {
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
}

.footer-heading {
    margin: 0 0 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.86;
}

.footer-contact {
    max-width: 20rem;
}

.footer-contact p {
    margin: 0 0 0.7rem 0;
    font-size: 1.20rem;
    opacity: 0.86;
}

.footer-small {
    max-width: 18rem;
    line-height: 1.45;
    font-size: 1.05rem;
    opacity: 0.74;
}

.footer-links {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-links a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-social {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-social a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
    color: #D4A373;
}

.footer-social {
    border-left: 1px solid rgba(243, 238, 229, 0.3);
    padding-left: 2rem;
}

.footer-copy {
    margin: 0.7rem 0 0 0;
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.65;
}

.footer-copy a {
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.footer-copy a:hover {
    color: #D4A373;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 1.2rem 0.8rem 1.2rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-line {
        width: 90%;
        margin: 0.8rem auto 1.2rem auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .logo-footer {
        width: 7rem;
        height: 7rem;
    }

    .footer-contact {
        max-width: 18rem;
    }

    .footer-heading {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .footer-contact p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-small {
        max-width: 18rem;
        font-size: 0.95rem;
    }

    .footer-links,
    .footer-social {
        min-width: 0;
        width: 100%;
        padding-top: 0;
    }

    .footer-links a,
    .footer-social a {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a:hover,
    .footer-social a:hover {
        font-size: 1.2rem;
    }

    .footer-social {
        border-left: none;
        border-top: 1px solid rgba(243, 238, 229, 0.3);
        padding-left: 0;
        padding-top: 1.2rem;
        margin-top: 0;
    }

    .footer-copy {
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }
}



body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

body::before {
    width: 36rem;
    height: 11rem;
    top: 8rem;
    right: -10rem;
    border: 1px solid rgba(212, 163, 115, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(212, 163, 115, 0.08));
    transform: rotate(-16deg);
    animation: ambientFloatOne 16s ease-in-out infinite;
}

body::after {
    width: 30rem;
    height: 12rem;
    left: -9rem;
    top: 44%;
    border: 1px solid rgba(75, 151, 88, 0.14);
    background: linear-gradient(135deg, rgba(75, 151, 88, 0.08), rgba(255, 255, 255, 0.35));
    transform: rotate(14deg);
    animation: ambientFloatTwo 18s ease-in-out infinite;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 1%;
    border-radius: 50px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255, 255, 255, 0.03) 58%, rgba(255, 255, 255, 0.08) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.banner img {
    animation: bannerZoom 14s ease-in-out infinite alternate;
}

.banner-text {
    animation: fadeSlideLeft 1s ease-out both;
}

.banner-subtext {
    animation: fadeUp 1s ease-out 0.2s both;
}

.grid {
    position: relative;
    margin: 0 auto;
}

.grid::before {
    content: "";
    position: absolute;
    top: 7rem;
    left: 4%;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 72%);
    z-index: -1;
}

.tekst1,
.tekst2,
.visual,
.tekst3,
.tekst4,
.visual1,
.footer {
    animation: fadeUp 0.9s ease-out both;
}

.tekst1 {
    animation-delay: 0.15s;
}

.tekst2 {
    position: relative;
    overflow: hidden;
    animation-delay: 0.3s;
}

.tekst2::before {
    content: "";
    position: absolute;
    width: 13rem;
    height: 13rem;
    top: -4.5rem;
    right: -4rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72%);
}

.visual {
    animation-delay: 0.42s;
}

.tekst3 {
    animation-delay: 0.54s;
}

.tekst4 {
    animation-delay: 0.66s;
}

.visual1 {
    animation-delay: 0.78s;
}

.footer {
    position: relative;
    overflow: hidden;
    animation-delay: 0.9s;
}

.footer::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 18rem;
    right: -6rem;
    top: -7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.img2,
.img3,
.tekst2,
.footer {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.img2:hover,
.img3:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.12);
}

.tekst2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12);
}

.footer:hover {
    box-shadow: 0 -14px 35px rgba(23, 63, 29, 0.12);
}

@media (max-width: 1200px) {
    ul {
        gap: 2.25rem;
    }

    .button1 {
        width: auto;
        padding: 0 1.4rem;
        font-size: 0.95rem;
    }

    .tekst1 p,
    .tekst2 li,
    .tekst3 p,
    .tekst4 p {
        font-size: 1.3rem;
    }

    .tekst2 {
        height: auto;
        min-height: 36rem;
    }

    .tekst3 {
        margin-top: 24rem;
    }

    .button2 {
        width: auto;
        min-width: 14rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 900px) {
    header {
        justify-content: space-between;
        min-height: 5.5rem;
        padding: 0.75rem 1rem;
    }

    .logo-link {
        position: static;
        z-index: 31;
    }

    .logo {
        width: 7.5rem;
        height: 4.5rem;
    }

    .menu-knop {
        display: flex;
        position: relative;
        z-index: 31;
    }

    .navigatie {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: rgba(237, 231, 223, 0.98);
        box-shadow: 0 18px 30px rgba(134, 115, 94, 0.18);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 30;
    }

    .navigatie.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigatie ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .navigatie li {
        width: 100%;
    }

    .line1 {
        width: 100%;
        height: 1px;
    }

    .button1 {
        position: static;
        width: 100%;
        min-width: 0;
        height: 3.25rem;
    }

    .header-actions {
        position: static;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .header-actions .button1,
    .header-actions .button-offerte {
        width: 100%;
        height: 3.25rem;
        padding: 0 1rem;
    }

    .banner {
        height: 62vh;
        min-height: 24rem;
    }

    .banner img {
        width: calc(100% - 2rem);
        height: 100%;
        margin: 1rem;
        border-radius: 2rem;
    }

    .banner::after {
        inset: 1rem;
        border-radius: 2rem;
    }

    .banner-text {
        left: 2rem;
        right: 2rem;
        max-width: none;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-subtext {
        width: auto;
        margin: 0.5rem 1rem 0;
        text-align: left;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: calc(100% - 2rem);
        margin-top: 1.5rem;
    }

    .tekst1,
    .tekst2,
    .visual,
    .tekst3,
    .tekst4,
    .visual1 {
        grid-column: 1;
        grid-row: auto;
        margin: 0;
        width: auto;
    }

    .tekst1,
    .tekst3,
    .tekst4 {
        padding: 0 0.35rem;
    }

    .tekst1 h2,
    .tekst2 h2,
    .tekst3 h2,
    .tekst4 h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tekst1 p,
    .tekst2 li,
    .tekst3 p,
    .tekst4 p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .tekst2 {
        min-height: 0;
        padding: 2rem 1.5rem;
        margin-top: 0.5rem;
    }

    .tekst2 ul {
        gap: 1rem;
        margin-top: 1rem;
        padding-left: 1rem;
    }

    .img2,
    .img3 {
        width: 100%;
        height: auto;
        border-radius: 2rem;
    }

    .tekst3 {
        margin-top: 0;
    }

    .span2 {
        grid-column: 1;
        margin: 0.5rem 0;
    }

    .galerij-intro {
        grid-column: 1;
        margin-top: 2.5rem;
        text-align: left;
    }

    .galerij-intro p {
        margin-left: 0;
    }

    .galerij {
        grid-column: 1;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1rem 0 0;
    }

    .galerij-kaart,
    .galerij-kaart.groot,
    .galerij-kaart.hoog,
    .galerij-kaart.breed {
        grid-column: auto;
        grid-row: auto;
        min-height: 18rem;
    }

    .button2 {
        margin-left: 0;
        width: 100%;
        max-width: 20rem;
        height: 3.5rem;
        font-size: 1.1rem;
    }

    .footer {
        margin-top: 4rem;
        padding: 1.5rem 1rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        width: 100%;
    }

    .footer-small {
        max-width: none;
    }
}

@media (max-width: 600px) {
    a {
        font-size: 1.05rem;
    }

    .banner {
        height: 72vh;
        min-height: 28rem;
    }

    .banner-text {
        left: 1.5rem;
        right: 1.5rem;
    }

    .galerij {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .galerij-intro,
    .galerij {
        justify-self: stretch;
    }

    .cta-inspiratie {
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }

    .banner-text h1 {
        font-size: 1.65rem;
    }

    .banner-subtext {
        font-size: 0.95rem;
    }

    .tekst1 h2,
    .tekst2 h2,
    .tekst3 h2,
    .tekst4 h2 {
        font-size: 1.7rem;
    }

    .tekst1 p,
    .tekst2 li,
    .tekst3 p,
    .tekst4 p {
        font-size: 1.05rem;
    }

    .logo-footer {
        width: 10rem;
        height: 10rem;
    }

    .footer-heading,
    .footer-links a,
    .footer-contact p {
        font-size: 1.15rem;
    }

    .footer-copy {
        font-size: 1rem;
    }

    .galerij {
        grid-template-columns: 1fr;
    }

    .galerij-kaart,
    .galerij-kaart.groot,
    .galerij-kaart.hoog,
    .galerij-kaart.breed {
        min-height: 20rem;
    }

    .galerij-kaart figcaption {
        padding: 1rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-28px);
    }

    to {
        opacity: 0.8;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes bannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes ambientFloatOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-20px, 18px, 0);
    }
}

@keyframes ambientFloatTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(24px, -18px, 0);
    }
}

.galerij-intro {
    grid-column: 2 / 12;
    margin: 5rem 0 0;
    text-align: center;
    animation: fadeUp 0.9s ease-out both;
}

.galerij-intro span {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(75, 151, 88, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #4B9758;
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.galerij-intro h2 {
    margin: 0;
    color: #2f261f;
    font-family: 'Poltawski Nowy', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.galerij-intro p {
    max-width: 720px;
    margin: 1rem auto 0;
    color: #6f665f;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
}

.galerij {
    grid-column: 1 / 13;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 1.15rem;
    margin: 2rem 5% 0;
}

.galerij-kaart {
    position: relative;
    min-height: 18rem;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #173f1d;
    box-shadow: 0 18px 38px rgba(49, 37, 25, 0.14);
    isolation: isolate;
    animation: fadeUp 0.9s ease-out both;
    transition: transform 0.42s ease, box-shadow 0.42s ease;
}

.galerij-kaart.groot,
.galerij-kaart.breed {
    grid-column: span 2;
}

.galerij-kaart.groot {
    grid-row: span 2;
    min-height: 37.2rem;
}

.galerij-kaart.hoog {
    grid-row: span 2;
    min-height: 37.2rem;
}

.galerij-kaart img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.02);
    transition: transform 0.75s ease, filter 0.75s ease;
}

.galerij-kaart::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 63, 29, 0.02) 20%, rgba(23, 63, 29, 0.76) 100%);
    opacity: 0.9;
    pointer-events: none;
}

.galerij-kaart::after {
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.42s ease, transform 0.42s ease;
    pointer-events: none;
}

.galerij-kaart figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    transform: translateY(0.45rem);
    transition: transform 0.42s ease;
}

.galerij-kaart strong {
    font-size: 1.12rem;
    line-height: 1.2;
}

.galerij-kaart span {
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.93rem;
    line-height: 1.5;
}

.galerij-kaart:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 54px rgba(49, 37, 25, 0.2);
}

.galerij-kaart:hover img {
    filter: saturate(1.14) contrast(1.08);
    transform: scale(1.09);
}

.galerij-kaart:hover::after {
    opacity: 1;
    transform: scale(1);
}

.galerij-kaart:hover figcaption {
    transform: translateY(0);
}


/* ===========================
   CTA INSPIRATIE
=========================== */

.cta-inspiratie{
    grid-column: 1 / 13;
    margin: 5.5rem auto 0;
    width: min(1120px, 92%);
    border: 1px solid rgba(212, 163, 115, 0.28);
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(23, 63, 29, 0.95) 0%, rgba(51, 105, 58, 0.94) 58%, rgba(212, 163, 115, 0.92) 100%);
    box-shadow: 0 28px 60px rgba(23, 63, 29, 0.2);
    position: relative;
}

.cta-inspiratie::before{
    content:"";
    position:absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    pointer-events: none;
}

.cta-inspiratie::after{
    content:"";
    position:absolute;
    inset: auto 2rem 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
    pointer-events: none;
}

.cta-content{
    position:relative;
    z-index:2;
    padding:4rem 2rem 4.3rem;
    text-align:center;
    color:white;
}

.cta-badge{
    display:inline-block;
    padding:.48rem 1rem;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.3);
    border-radius:999px;
    font-family:'Poppins',sans-serif;
    font-size:.85rem;
    letter-spacing:0.08em;
    text-transform:uppercase;
    margin-bottom:1.3rem;
}

.cta-content h2{
    margin:0;
    font-size:clamp(2rem,4vw,3.2rem);
    font-family:'Poltawski Nowy',serif;
}

.cta-content p{
    max-width:680px;
    margin:1.4rem auto 2.5rem;
    line-height:1.8;
    font-size:1.1rem;
    font-family:'Poppins',sans-serif;
    opacity:.95;
}

.cta-button{
    box-sizing: border-box;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height: 3.8rem;
    padding:1.1rem 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius:999px;
    background: linear-gradient(135deg, #ffffff 0%, #fff2df 100%);
    color:#173f1d;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:1.05rem;
    text-decoration:none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    box-shadow:0 16px 34px rgba(0,0,0,.22);
}

.cta-button:hover{
    transform: translateY(-4px);
    background: #D4A373;
    color: white;
    box-shadow: 0 20px 36px rgba(0,0,0,.24);

    font-size: 1.05rem !important;
    font-weight: 800;
}

@media (max-width:900px){

    .cta-inspiratie{
        width:100%;
        margin-top:3rem;
        border-radius:24px;
    }

    .cta-content{
        padding:3rem 1.5rem;
    }

    .cta-content h2{
        font-size:2rem;
    }

    .cta-content p{
        font-size:1rem;
        line-height:1.7;
    }

    .cta-button{
        width:100%;
        max-width:320px;
        padding:1rem;
        font-size:1rem;
    }

} 

@media (max-width:600px){
    .galerij {
        grid-column: 1;
        grid-template-columns: 1fr;
        width: 100%;
        justify-self: stretch;
    }

    .galerij-intro {
        grid-column: 1;
        justify-self: stretch;
    }

    .galerij-kaart,
    .galerij-kaart.groot,
    .galerij-kaart.hoog,
    .galerij-kaart.breed {
        grid-column: 1;
        width: 100%;
    }

    .cta-inspiratie {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }
}
