/* ==========================================
   FOOTER
========================================== */

.footer {
    position: relative;
    padding: 56px 0 0;
    background: #060606;
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 240px;
    background: radial-gradient(circle, rgba(214, 166, 79, .12), transparent 70%);
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;

    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-light);
    font-size: .92rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact a {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: .88rem;
}

.footer-note svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 24px 0;

    color: var(--color-text-muted);
    font-size: .82rem;
}

.footer-bottom a {
    color: var(--color-text-muted);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}