/* ── Footer Widget ── */

.fw-wrap {
    width: 100%;
    margin-top: 0;
    font-family: inherit;
}

.fw-topbar {
    height: 3px;
    width: 100%;
}

.fw-body {
    padding: 36px 5% 28px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left: brand block */
.fw-brand {
    flex: 0 0 240px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fw-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fw-logo {
    display: block;
    flex-shrink: 0;
}

.fw-site-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fw-site-name-text {
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
}

.fw-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
}

.fw-description {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 4px;
}

/* Right: social + columns block */
.fw-right {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Social row */
.fw-social-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.fw-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.fw-social-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.fw-social-btn svg {
    width: 18px;
    height: 18px;
    fill: #cccccc;
    pointer-events: none;
    transition: fill 0.2s;
}

.fw-social-btn:hover svg {
    fill: #ffffff;
}

.fw-backtotop {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.fw-backtotop:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.fw-backtotop svg {
    width: 16px;
    height: 16px;
    fill: #cccccc;
}

/* Columns */
.fw-columns {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.fw-col {
    flex: 1;
    min-width: 140px;
}

.fw-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fw-col-header svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.fw-col-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.fw-col-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fw-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s, gap 0.15s;
}

.fw-link:hover {
    gap: 10px;
}

.fw-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.65;
}

/* Copyright bar */
.fw-copyright-bar {
    padding: 12px 5%;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .fw-body {
        flex-direction: column;
        padding: 24px 4% 20px;
        gap: 28px;
    }
    .fw-brand {
        flex: none;
        max-width: 100%;
    }
    .fw-columns {
        gap: 20px;
    }
    .fw-col {
        min-width: 120px;
    }
}