/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.site-footer a:hover {
    color: var(--color-gold);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Column 1 — Brand */
.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer__brand-name span {
    color: var(--color-gold);
}

.footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.footer__social a:hover {
    border-color: var(--color-gold);
    background: rgba(197,160,40,0.1);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

/* Column headings */
.footer__title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* Column 2 — Nav */
.footer__nav a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
}

/* Column 3 — Solutions */
.footer__solutions a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
}

/* Column 4 — Contacts */
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer__contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-item a {
    font-weight: 500;
}

/* Bottom bar */
.footer__bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__distributor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

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

.footer__bottom-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__bottom-right a {
    font-size: 0.8rem;
}

.footer__logo-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    vertical-align: middle;
    text-decoration: none;
    color: inherit;
    font-family: 'Manrope', var(--font-heading), sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer__logo-inline:hover {
    opacity: 0.8;
}
