/* Footer Styles */

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(239, 201, 119, 0.12), transparent 24%),
        linear-gradient(180deg, #0d1918 0%, #081112 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 1.25rem;
    margin-top: 2rem;
    text-align: left;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.7fr)) minmax(260px, 1fr);
    gap: 2rem;
    align-items: start;
}

.site-footer__grid > * {
    min-width: 0;
}

.site-footer h2,
.site-footer h3 {
    color: #ffffff;
    margin: 0 0 0.85rem;
}

.site-footer h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.site-footer h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__description,
.site-footer__cta p,
.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
    margin: 0;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.site-footer__socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
}

.site-footer__socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__bottom a:hover {
    color: #ffffff;
}

.site-footer__cta {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.site-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.site-footer__secondary {
    background: rgba(255, 255, 255, 0.06);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 2.2rem;
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom a,
.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding-top: 3.25rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .site-footer__actions .btn {
        width: 100%;
    }
}