.footer {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(207, 148, 80, 0.06), transparent 40%),
        linear-gradient(180deg, #0e0e10 0%, #141418 100%);
    color: #ddd;
    padding: 90px 8% 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(207, 148, 80, 0), rgba(207, 148, 80, 0.8), rgba(207, 148, 80, 0));
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 22px;
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-info p {
    line-height: 1.8;
    font-size: 15px;
    color: #7a7a82;
    margin-bottom: 4px;
}

.footer-social h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #666;
    transition: fill 0.25s ease;
}

.social-icons a:hover svg {
    fill: var(--accent);
}

.social-icons a:hover {
    border-color: rgba(207, 148, 80, 0.45);
    background: rgba(207, 148, 80, 0.1);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #4e4e56;
    letter-spacing: 0.03em;
}
