/* ============================================================
   SYNKYN STUDIOS — FOOTER (NEW)
   ============================================================ */

/* ─── Synkyn yellow/dark theme tokens for footer ─── */
.site-footer {
    --color-primary-50: #faf8ee;
    --color-accent: #f2d400;
    --color-bg-dark: #080808;
    --color-bg-dark-1: #101010;
    --color-stroke-4: #232323;
    --color-white-10: rgba(255, 255, 255, .10);
    --color-white-60: rgba(255, 255, 255, .60);
    --font-tagline-1: 0.875rem;
    --font-tagline-2: 0.8125rem;
    --font-heading-6: 1.125rem;
    --radius-card: 1.25rem;
}

/* ─── Main container ─── */
.site-footer .main-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ════════════════════════════════
    FOOTER
════════════════════════════════ */
footer.site-footer {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

/* ── gradient blobs ── */
.site-footer .footer-blob {
    pointer-events: none;
    position: absolute;
    user-select: none;
}

.site-footer .footer-blob--right {
    top: 5%;
    right: -64%;
    width: 550px;
    height: 550px;
    transform: rotate(-30deg);
}

.site-footer .footer-blob--left {
    bottom: -33%;
    left: -83%;
    width: 728px;
    height: 728px;
}

@media (min-width: 768px) {
    .site-footer .footer-blob--right {
        top: 5%;
        right: -30%;
    }

    .site-footer .footer-blob--left {
        bottom: -60%;
        left: -52%;
        width: 870px;
        height: 870px;
    }
}

@media (min-width: 1024px) {
    .site-footer .footer-blob--right {
        right: -19%;
    }

    .site-footer .footer-blob--left {
        left: -38%;
    }
}

@media (min-width: 1280px) {
    .site-footer .footer-blob--right {
        top: -32%;
        right: -9%;
    }

    .site-footer .footer-blob--left {
        bottom: -77%;
        left: -30%;
    }
}

.site-footer .footer-gradient-blob {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%,
            rgba(242, 212, 0, .42) 0%,
            rgba(242, 212, 0, .12) 45%,
            transparent 70%);
    opacity: .6;
}

.site-footer .footer-gradient-blob--left {
    background: radial-gradient(circle at 70% 70%,
            rgba(255, 216, 77, .38) 0%,
            rgba(242, 212, 0, .10) 48%,
            transparent 72%);
}

/* ── inner grid ── */
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 0 3rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .site-footer .footer-grid {
        grid-template-columns: 1.5fr 2fr;
        padding-top: 5.625rem;
        gap: 0 4rem;
    }
}

/* ── brand col ── */
.site-footer .footer-brand {
    max-width: 420px;
}

.site-footer .footer-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.site-footer .footer-brand-title {
    color: var(--color-primary-50);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.site-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-tagline-1);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.site-footer .footer-tagline--motto {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--font-tagline-2);
    font-style: italic;
    margin-bottom: 1.75rem;
}

.site-footer .footer-social-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-social-separator {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
}

.site-footer .footer-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    height: auto;
    border: none;
    text-decoration: none;
    color: #ffffff;
}

.site-footer .footer-social-link svg {
    display: block;
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.site-footer .footer-social-link span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

.site-footer .footer-social-link:hover svg {
    color: #ffd84d;
    filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.6));
}

.site-footer .footer-social-link:hover span {
    color: #ffd84d;
}

/* ── links grid ── */
.site-footer .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
    margin-top: 106px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-footer .footer-links-grid {
        margin-top: 107px;
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 767px) {
    .site-footer .footer-links-grid {
        margin-top: 3.5rem;
    }
}

@media (max-width: 639px) {
    .site-footer .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1rem;
        margin-top: 2.5rem;
    }

    .site-footer .footer-col:last-child {
        grid-column: span 2;
    }
}

.site-footer .footer-col-title {
    font-size: 1.125rem;
    color: var(--color-primary-50);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.site-footer .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.site-footer .footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    transition: color .2s;
}

.site-footer .footer-link:hover {
    color: var(--color-accent);
}

.site-footer .footer-link.active {
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    cursor: default;
}

/* ── divider + bottom bar ── */
.site-footer .footer-bottom {
    position: relative;
    padding-top: 1.625rem;
    padding-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .site-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding-bottom: 6.25rem;
    }
}

.site-footer .footer-divider {
    display: none;
}

.site-footer .footer-copy {
    font-size: var(--font-tagline-2);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.site-footer .footer-copy--location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-direction: row;
}

.site-footer .footer-copy--location svg {
    flex-shrink: 0;
    opacity: 0.8;
    display: inline-block;
    vertical-align: middle;
}