/* ============================================================
   footer.css — Brand Identity System Footer (Black #111111 + Yellow #F4C400)
   ============================================================ */

.site-footer {
    background: #111111;
    color: #E9E9E9;
    border-top: 4px solid #F4C400;
}

/* ----- Footer Top ----- */
.footer-top {
    padding-block: var(--space-16);
}

.footer-top__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
}

@media (max-width: 1100px) {
    .footer-top__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .footer-top__grid { grid-template-columns: 1fr; }
}

/* ----- Logo ----- */
.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: var(--space-4);
}

.footer-logo__img {
    height: 68px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-tagline {
    color: #999999;
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

/* ----- NAP Info ----- */
.footer-nap {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    font-style: normal;
}

.footer-nap__row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: #E9E9E9;
}

.footer-nap__icon {
    color: #F4C400;
    flex-shrink: 0;
    margin-top: .2em;
}
.footer-nap__icon svg { width: 16px; height: 16px; }

/* ----- Footer Columns ----- */
.footer-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    letter-spacing: .04em;
    position: relative;
    padding-bottom: .4em;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #F4C400;
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #F4C400;
    padding-left: 4px;
}

/* ----- Hours ----- */
.footer-hours {
    font-size: var(--text-sm);
}

.site-footer .hours-list__item {
    border-bottom: 1px solid #2B2B2B;
    padding-block: 6px;
}

.site-footer .hours-list__day {
    color: #E9E9E9 !important;
    font-weight: 700;
}

.site-footer .hours-list__time {
    color: #F4C400 !important;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: .03em;
}

.site-footer .hours-list__time--closed {
    color: #EF4444 !important;
    font-weight: 800;
}

.footer-hours__247,
.site-footer .hours-247 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: #F4C400;
    color: #111111;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: .5em 1em;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    box-shadow: 0 4px 14px rgba(244, 196, 0, 0.3);
}

/* ----- Footer Bottom ----- */
.footer-bottom {
    background: #080808;
    padding-block: var(--space-6);
    border-top: 1px solid #222222;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: var(--text-xs);
    color: #666666;
}

.footer-bottom__copy a {
    color: #F4C400;
}

.footer-bottom__list {
    display: flex;
    gap: var(--space-4);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom__list a {
    color: #666666;
    text-decoration: none;
}
.footer-bottom__list a:hover { color: #FFFFFF; }
