/* Footer contact block */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B0A090;
}

.footer-contact-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #1C1A16;
    line-height: 1.7;
    text-decoration: none;
}

.footer-contact-val a {
    color: #1C1A16;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-val a:hover {
    color: #b01c0a;
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        gap: 1.2rem;
    }
}
