/* ═══════════════════════════════
   ORIGIN Coffee — Site Footer
   ═══════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap");

.site-footer {
    font-family: "Jost", sans-serif;
    background: #1a1410;
    color: #e8ddd0;
    padding: 64px 40px 0;
}

/* ── Inner grid ── */
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 56px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 52px;
    border-bottom: 0.5px solid rgba(232, 221, 208, 0.14);
}

/* ── Brand column ── */
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.site-footer__logo-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    letter-spacing: 0.14em;
    color: #f0e6d3;
    text-transform: uppercase;
}

.nav-logo__img {
    /* width: 40px; */
    height: auto;
    display: block;
}

.nav-logo__mark {
    width: 38px;
    height: 38px;
    border: 1.5px solid #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #c9a96e;
    letter-spacing: 0.05em;
}

.site-footer__tagline {
    font-size: 13.5px;
    color: rgba(232, 221, 208, 0.5);
    line-height: 1.85;
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 28px;
}

.site-footer__divider {
    width: 36px;
    height: 1px;
    background: #c9a96e;
    margin-bottom: 28px;
}

/* ── Socials ── */
.site-footer__socials {
    display: flex;
    gap: 10px;
}

.site-footer__social-link {
    width: 34px;
    height: 34px;
    border: 0.5px solid rgba(232, 221, 208, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 221, 208, 0.55);
    font-size: 13px;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease;
}

.site-footer__social-link:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

/* ── Nav columns ── */
.site-footer__col-title {
    font-family: "Playfair Display", serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a96e;
    font-style: italic;
    margin-bottom: 22px;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__col ul li {
    margin-bottom: 14px;
}

.site-footer__col ul li a {
    color: rgba(232, 221, 208, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.site-footer__col ul li a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 0.5px;
    background: rgba(201, 169, 110, 0.35);
    flex-shrink: 0;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.site-footer__col ul li a:hover {
    color: #f0e6d3;
}

.site-footer__col ul li a:hover::before {
    width: 24px;
    background: #c9a96e;
}

/* ── Bottom bar ── */
.site-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(232, 221, 208, 0.28);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.site-footer__bottom-craft {
    font-style: italic;
    color: rgba(201, 169, 110, 0.38);
    letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .site-footer {
        padding: 48px 24px 0;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
