﻿.bromaia-footer {
    background: var(--color-background-light, #e9dfd5);
    border-top: 1px solid rgba(99, 32, 36, 0.1);
    padding-top: 20px;
}

/* ── Main bar: logo | nav cols | social ── */
.bromaia-footer__bar {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(99, 32, 36, 0.08);
}

.bromaia-footer__logo {
    font-family: "Didot", "Bodoni MT", "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
    color: #632024;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bromaia-footer__logo:hover { opacity: 0.75; }

.bromaia-footer__logo img {
    height: 36px;
    width: auto;
    display: block;
}

/* Nav columns */
.bromaia-footer__nav {
    display: flex;
    gap: 40px;
    flex: 1;
    margin-left: 16px;
}

.bromaia-footer__col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bromaia-footer__col-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #632024;
    margin-bottom: 4px;
}

a.bromaia-footer__col-title--link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.bromaia-footer__col-title--link:hover {
    opacity: 0.7;
}

.bromaia-footer__col-link {
    font-size: 12px;
    font-weight: 300;
    color: #6F4D38;
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.2s ease;
}

.bromaia-footer__col-link:hover { color: #2E1F14; }

.bromaia-footer__col-text {
    font-size: 12px;
    font-weight: 300;
    color: #6F4D38;
    line-height: 1.7;
    display: block;
}

/* Social icons */
.bromaia-footer__right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bromaia-footer__social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.bromaia-footer__social-link {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bromaia-footer__social-link:hover { opacity: 0.6; }

.bromaia-footer__social-link svg {
    width: 18px;
    height: 18px;
    stroke: #6F4D38;
}

/* ── Bottom bar: copyright | legal ── */
.bromaia-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.bromaia-footer__copy {
    font-size: 11px;
    color: #9a8070;
    letter-spacing: 0.03em;
    margin: 0;
}

.bromaia-footer__legal {
    display: flex;
    gap: 20px;
}

.bromaia-footer__legal a {
    font-size: 11px;
    color: #9a8070;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bromaia-footer__legal a:hover { color: #2E1F14; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .bromaia-footer__bar {
        gap: 28px;
    }

    .bromaia-footer__nav {
        gap: 24px;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .bromaia-footer {
        padding: 0 20px;
    }

    .bromaia-footer__bar {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
        padding: 32px 0 24px;
    }

    .bromaia-footer__nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        width: 100%;
    }

    .bromaia-footer__col {
        min-width: 0;
    }

    .bromaia-footer__col-title {
        line-height: 1.4;
    }

    .bromaia-footer__col-link,
    .bromaia-footer__col-text {
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .bromaia-footer__right {
        width: 100%;
    }

    .bromaia-footer__social {
        flex-wrap: wrap;
    }

    .bromaia-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 0 26px;
    }

    .bromaia-footer__legal {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

