/* ============================================================
   FOOTER — подвал сайта
   ============================================================ */

.footer {
    padding: 4rem 3rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.footer__brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer__logo-link {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.footer__logo-text {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8, #9b59b6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: word-glow 4s ease-in-out infinite;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer__links {
    display: flex;
    gap: 5rem;
    flex: 1;
    justify-content: center;
    max-width: 100%;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__col-list li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer__col-list li a:hover {
    color: #ffffff;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.8rem;
}

.footer__bottom-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-sep {
    color: rgba(255, 255, 255, 0.06);
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
    margin: 0;
}