/* === HS Footer === */
:root {
    --hs-color-point: #d32978;
}

.hs-footer {
    background: #fed1d0;
    color: #3d2f35;
    padding: 64px 0 0;
}

.hs-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top */
.hs-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(61, 47, 53, 0.15);
}

/* Brand */
.hs-footer__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #3d2f35;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.hs-footer__logo:hover {
    color: #d32978;
}

.hs-footer__tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: rgba(61, 47, 53, 0.6);
    font-weight: 300;
    font-style: italic;
}

/* Links */
.hs-footer__links {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 40px;
}

.hs-footer__col-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d32978;
    margin-bottom: 16px;
}

.hs-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hs-footer__col li {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: rgba(61, 47, 53, 0.7);
    line-height: 1.5;
}

.hs-footer__col a {
    color: rgba(61, 47, 53, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hs-footer__col a:hover {
    color: #3d2f35;
}

/* Bottom */
.hs-footer__bottom {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(61, 47, 53, 0.12);
}

.hs-footer__bottom p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    color: rgba(61, 47, 53, 0.45);
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
    .hs-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hs-footer__links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hs-footer {
        padding: 48px 0 0;
    }

    .hs-footer__inner {
        padding: 0 20px;
    }

    .hs-footer__logo {
        font-size: 1.4rem;
    }

    .hs-footer__tagline {
        font-size: 0.8rem;
    }

    .hs-footer__col-title {
        font-size: 0.7rem;
    }

    .hs-footer__col li {
        font-size: 0.82rem;
    }

    .hs-footer__bottom p {
        font-size: 0.72rem;
    }
}
