/* ── Footer ─────────────────────────────────── */
.ft {
    margin-top: 80px;
    background: var(--clr-s1, #0e1117);
    border-top: 1px solid rgba(255,255,255,.07);
    position: relative;
    overflow: hidden;
    font-family: var(--font-b, 'DM Sans', sans-serif);
}

/* верхняя accent-line */
.ft::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--clr-gold, #e9b84a) 30%,
        var(--clr-pink, #f43f6b) 70%,
        transparent 100%);
    opacity: .35;
}

/* фоновое свечение */
.ft::after {
    content: '';
    position: absolute;
    top: -120px; left: -10%;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,184,74,.05) 0%, transparent 70%);
    pointer-events: none;
}

.ft__top {
    padding: 60px 0 48px;
}

.ft__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Бренд */
.ft__logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    margin-bottom: 16px;
}

.ft__logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(233,184,74,.5));
}

.ft__logo-text {
    font-family: var(--font-d, 'Syne', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--clr-gold, #e9b84a), #fff 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.01em;
}

.ft__desc {
    font-size: 0.85rem;
    color: var(--clr-muted, #5a6478);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 260px;
}

/* Социалки */
.ft__socials {
    display: flex;
    gap: 8px;
}

.ft__social {
    width: 36px; height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-muted, #5a6478);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all .2s;
}

.ft__social:hover {
    background: rgba(233,184,74,.12);
    border-color: rgba(233,184,74,.3);
    color: var(--clr-gold, #e9b84a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233,184,74,.15);
}

/* Колонки */
.ft__col-title {
    font-family: var(--font-d, 'Syne', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--clr-gold, #e9b84a);
    margin: 0 0 18px;
}

.ft__links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft__links a {
    font-size: 0.86rem;
    color: var(--clr-muted, #5a6478);
    text-decoration: none;
    transition: color .18s, padding-left .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ft__links a::before {
    content: '';
    width: 0; height: 1px;
    background: var(--clr-gold, #e9b84a);
    transition: width .18s;
    display: inline-block;
    flex-shrink: 0;
}

.ft__links a:hover {
    color: var(--clr-text, #e2e8f0);
}

.ft__links a:hover::before {
    width: 10px;
}

/* Нижняя строка */
.ft__bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 18px 0;
    background: rgba(0,0,0,.2);
}

.ft__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    grid-template-columns: unset;
}

.ft__bottom span {
    font-size: 0.78rem;
    color: var(--clr-muted, #5a6478);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
    .ft__container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .ft__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .ft__top { padding: 44px 0 36px; }
    .ft__container { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .ft__bottom-inner { flex-direction: column; text-align: center; }
}
