.site-logo {
    position: relative;
}

.site-logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 100%; /* или нужная высота */

    background-image: url('georgian-tape.png');
    background-repeat: no-repeat;
    background-size: 100% auto; /* вписать по ширине */
    background-position: bottom center;

    pointer-events: none; /* чтобы не мешало кликам */
}

@media (max-width: 1024px) {
    .site-logo::after {
        transform: scale(0.75) translateY(10px) translateX(-4px);
        opacity: 0.8;
    }
}
