.site-footer {
    width: 100wv;
    margin: 40px auto 0;
    color: #ffffff;
    background: #05070e;
}

.site-footer nav {
    background: transparent;
    box-shadow: none;
    border: 0;
    min-height: 0;
    padding: 0;
}

.site-footer-hero {
    position: relative;
    min-height: clamp(315px, 43vw, 570px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 52px;
    text-align: center;
    background-image:
        linear-gradient(180deg, rgba(5, 7, 14, 0.18) 0%, rgba(5, 7, 14, 0.62) 38%, rgba(5, 7, 14, 0.9) 100%),
        url("../assets/img/IMG_3707.JPG");
    background-size: cover;
    background-position: center 36%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.site-footer-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(244, 114, 182, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(5, 7, 14, 0.12) 0%, rgba(5, 7, 14, 0.7) 100%);
    pointer-events: none;
}

.site-footer-hero-inner,
.site-footer-main,
.site-footer-bottom {
    position: relative;
    z-index: 1;
}

.site-footer-hero-inner {
    width: min(760px, 100%);
}

.site-footer-kicker {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer-hero h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 78px);
    line-height: 0.98;
    color: #ffffff;
    text-wrap: balance;
}

.site-footer-hero-copy {
    margin: 26px auto 0;
    max-width: 760px;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.site-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.site-footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(244, 114, 182, 0.18);
    border-color: rgba(244, 114, 182, 0.42);
}

.site-footer-main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-column h3 {
    margin: 0 0 18px;
    font-size: clamp(28px, 2vw, 30px);
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.site-footer-logo-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer-logo {
    width: min(260px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.site-footer-contact,
.site-footer-links {
    display: grid;
    gap: 14px;
    background: transparent;
}

.site-footer-contact p,
.site-footer-contact a,
.site-footer-links a,
.site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(16px, 1.5vw, 12px);
    line-height: 1.58;
}

.site-footer-links a,
.site-footer-contact a {
    width: fit-content;
    transition: opacity 160ms ease, transform 160ms ease, color 160ms ease;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(4px);
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 26px;
    flex-wrap: wrap;
}

.site-footer-bottom p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .site-footer-hero {
        min-height: 390px;
        padding: 68px 18px 42px;
        background-attachment: scroll;
        background-position: center center;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        width: calc(100% - 24px);
        padding: 28px 0 22px;
    }

    .site-footer-bottom {
        width: calc(100% - 24px);
        padding-bottom: 22px;
        text-align: center;
    }

    .site-footer-logo {
        width: min(220px, 72%);
    }
}

@media (max-width: 640px) {
    .site-footer {
        margin-top: 28px;
    }

    .site-footer-hero {
        min-height: 330px;
        padding: 56px 14px 32px;
    }

    .site-footer-socials {
        gap: 12px;
    }

    .site-footer-socials a {
        min-width: 0;
        width: calc(50% - 6px);
        padding-inline: 12px;
    }

    .site-footer-column h3 {
        font-size: 28px;
    }

    .site-footer-contact p,
    .site-footer-contact a,
    .site-footer-links a,
    .site-footer-bottom p {
        font-size: 16px;
    }
}
