.site-footer {
    position: relative;
    margin-top: 90px;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
}

/* Dividing line above footer columns (VH, About, Support) — inset from viewport sides */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #d5d5d0;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 120px 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 60px 40px;
    align-items: start;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #000000;
    letter-spacing: -1px;
    line-height: 1;
    font-style: italic;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #333333;
}

.footer-col--trade {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-trade-link {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.45);
    padding-bottom: 2px;
    transition: opacity 0.2s;
    width: fit-content;
}

.footer-trade-link:hover {
    opacity: 0.65;
}

.footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-socials a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-socials a:hover {
    color: #333333;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    border-top: 1px solid rgba(0,0,0,0.12);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: #000000;
}

.footer-bottom a {
    color: #000000;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #333333;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 50px 24px 30px;
        gap: 36px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        font-size: 36px;
    }

    .footer-bottom {
        padding: 16px 24px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
