/* =========================
   FOOTER BASE
========================= */

.site-footer {
    background: #F5F5F1;
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* =========================
   TOP SECTION
========================= */

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* =========================
   BRAND (LEFT)
========================= */

.footer-brand {
    display: flex;
    flex-direction: column;
}

/* KINŪ */
.footer-logo {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1A1A1A;
}

/* SILK IN MOTION */
.footer-tagline {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    margin-top: 4px;
    opacity: 0.7;
    color: #1A1A1A;
}

/* =========================
   FOOTER NAV (CENTER)
========================= */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;

    justify-content: flex-start;
}

/* links */

.footer-nav a {
    text-decoration: none;
    color: #1A1A1A;

    font-size: 0.85rem;
    letter-spacing: 0.04em;
    opacity: 0.7;

    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

/* =========================
   LINKS (RIGHT)
========================= */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* =========================
   BOTTOM BAR
========================= */

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* COPYRIGHT */

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* SYMBOL */

.footer-symbol img {
    width: 28px;
    height: 28px;
    opacity: 0.25;
    transition: opacity 0.2s ease;
}

.footer-symbol img:hover {
    opacity: 0.4;
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1024px) {

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        align-items: flex-end;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}