@media only screen and (max-width: 1199px) {
        /* .gallery-item:nth-child(2n) {
            margin-top: clamp(2rem, 6vw, 3rem);
        } */
}

@media only screen and (max-width: 991px) {
    .section-padding {
        padding-top: calc(var(--padding) * 0.5);
        padding-bottom: calc(var(--padding) * 0.5);
    }

    /* ---- Header ---- */
    .site-header {
        position: fixed;
        background: linear-gradient(to bottom, rgba(5, 6, 5, 0.55) 0%, rgba(5, 6, 5, 0.28) 70%, transparent 100%);
    }

    .navbar-collapse {
        margin-top: 1.2rem;
        border-top: 1px solid var(--line-soft);
        padding-top: 1.2rem;
    }

    .navbar-brand {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 1.15rem;
        color: var(--bg) ;
    }
    .navbar-nav {
        gap: 1rem !important;
    }

    .nav-contact {
        display: inline-flex;
        width: fit-content;
    }

    /* ---- Hero ---- */
    .hero {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-inner {
        /* grid-template-columns: 1fr; */
        padding-top: 2rem;
        text-align: center;
    }

    .hero-art {
        height: 340px;
        margin-top: 1rem;
    }
    .hero-art-sm{
        right: 0;
    }

    .hero-art-xs{
        width: 6rem;
    }

    .hero-scroll {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "image"
            "imgsmall"
            "copy";
        row-gap: 1.8rem;
    }

    .intro-img-small { max-width: 260px; }
    .intro-img-large { min-height: 340px; }
    .intro-copy { max-width: none; }

    .gallery-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
}

@media only screen and (max-width: 575px) {
    .gallery-item:nth-child(2n) {
        margin-top: 0;
    }
}
