﻿.site-footer {
    position: relative;
    padding: 2rem 0 3.5rem;
    background: #fff;
    border-top: 1px solid rgba(106,27,26,.18); /* belirgin ayraç */
}

    .site-footer::before { /* üstte ince burgundy fade */
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        height: 10px;
        background: linear-gradient(to bottom, rgba(106,27,26,.12), rgba(106,27,26,0));
        pointer-events: none;
    }

.footer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr 1fr;
}

@media (max-width:992px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .brand-row {
    display: flex;
    gap: .75rem;
    align-items: center;
}

.footer-brand .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: #fff;
}

.footer-portrait {
    display: flex;
    justify-content: center;
}

    .footer-portrait img {
        max-width: 64%;
        max-height: 180px;
        object-fit: contain;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,.08);
        box-shadow: 0 12px 32px rgba(0,0,0,.12);
    }

.footer-quote {
    margin: .75rem 0 0;
    padding: .75rem 1rem;
    border-left: 4px solid var(--color-burgundy);
    border-radius: .75rem;
    background: linear-gradient(90deg, rgba(106,27,26,.06), rgba(106,27,26,0));
}

.footer-links .card-title, .footer-contact .card-title {
    font-weight: 800;
    color: var(--color-burgundy);
    margin-bottom: .5rem;
}

.contact-dl {
    display: grid;
    gap: .35rem;
}

    .contact-dl > div {
        display: flex;
        gap: .5rem;
    }

    .contact-dl dt {
        min-width: 140px;
        font-weight: 800;
        color: rgba(46,46,46,.95);
    }

    .contact-dl dd {
        margin: 0;
        color: rgba(46,46,46,.90);
    }

.social-row {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.social {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

    .social:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
        transition: all .18s ease;
    }

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    color: rgba(46,46,46,.8);
}

.to-top {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--color-burgundy);
    color: #fff;
    box-shadow: var(--shadow-md);
}

    .to-top:hover {
        transform: translateY(-2px);
    }
