.footer {
    background-color: rgb(45, 45, 45);
    color: rgba(255, 255, 255, 0.9);
    padding: 64px 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Brand column */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__logo img {
    height: 24px;
    width: auto;
}

.footer__brandName {
    font-family: var(--font-family-display);
    font-size: 1.25em;
    font-weight: 400;
}

.footer__tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

/* Column headings */
.footer__heading {
    font-family: var(--font-family-display);
    font-size: 1.1em;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Links column - override menu component styles */
.footer__links .menu--grillbrothers_footer {
    display: block;
}

.footer__links .menu__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links .menu__item {
    display: block;
}

.footer__links .menu__link {
    display: inline;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    transition: color 0.15s ease;
}

.footer__links .menu__link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer__links .menu__label {
    display: inline;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

/* Contact column */
.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Newsletter column */
.footer__newsletterText {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.footer__newsletterAction .link {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.footer__newsletterAction .link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    color: #fff;
    text-decoration: none;
}

/* Bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding-top: 32px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer__container {
        padding: 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        margin-top: 32px;
        padding-top: 24px;
    }
}
