/* Minification failed. Returning unminified contents.
(25,23): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(28,17): run-time error CSS1039: Token not allowed after unary operator: '-logo-green'
(33,21): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(63,21): run-time error CSS1039: Token not allowed after unary operator: '-gold-light'
(87,23): run-time error CSS1039: Token not allowed after unary operator: '-font-display'
(115,30): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(116,32): run-time error CSS1039: Token not allowed after unary operator: '-gold'
(154,21): run-time error CSS1039: Token not allowed after unary operator: '-gold-light'
 */
/* =====================================================================
   CulinaryBiz - FOOTER
   Load wherever the footer partial renders. Depends on tokens from home.css.
   ===================================================================== */

.footer {
    background: #0F1E0A;
    padding: 64px 40px 26px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--logo-green);
    margin-bottom: 14px;
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    margin-bottom: 13px;
    transition: color 0.2s;
}

    .footer-contact:hover {
        color: var(--gold-light);
    }

    .footer-contact .fc-icon {
        font-size: 14px;
        opacity: 0.85;
    }

.footer-bottom {
    max-width: 1180px;
    margin: 44px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-family: var(--font-display);
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.72);
        transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #0F1E0A;
            transform: translateY(-2px);
        }

    .footer-social svg {
        width: 17px;
        height: 17px;
        display: block;
    }

@media (max-width: 720px) {
    .footer {
        padding: 48px 24px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.footer-link {
    display: block;
    font-size: 13.5px;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    margin-bottom: 13px;
    transition: color 0.2s;
}

    .footer-link:hover {
        color: var(--gold-light);
    }

