.loriana-footer {
    background-color: rgba(241, 219, 221, 1);
    padding: 5rem 0;
    color: #000;
}
.footer-brand {
    margin-bottom: 6rem;
}
.footer-tagline {
    font-size: 1.25rem;
    font-weight: 400;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 10rem;
    margin-bottom: 5rem;
}
.footer-heading {
    font-size: 1.688rem;
    font-weight: 700;
    margin-bottom: 0rem;
    text-transform: uppercase;
    font-family: "Cabin", sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.contact-icon img {
    width: 3.125rem;
    height: auto;
}

.contact-text .label {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-text .value {
    display: block;
    font-size: 2.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.contact-text .sub-value {
    font-size: 2.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .2rem;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    transition: 0.3s;
}
.footer-links a:hover {
    padding-left: 0.5rem;
}
.address-item {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
}
.address-item p,
.address-item strong {
    display: block;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    position: relative;
}
.copyright {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
}

.social-links {
    position: absolute;
    right: 0;
    bottom: 2rem;
    display: flex;
    gap: 2rem;
}
.social-links img {
    width: 3.563rem;
    height: auto;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-brand {
        margin-bottom: 4rem;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .social-links {
        position: static;
    }
    .contact-text .sub-value,
    .contact-text .value {
        font-size: 1.5rem;
    }
    .footer-col {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .contact-item {
        margin-bottom: 2rem;
    }
    .loriana-footer {
        padding: 2rem 0;
    }
}