/* === HS Header === */
.hs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 48px;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.hs-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(211, 41, 120, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hs-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.hs-header__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.4s ease;
}

.hs-header.is-scrolled .hs-header__logo {
    color: #3d2f35;
}

/* Navigation */
.hs-header__menu {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.hs-header__menu a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.hs-header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d32978;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hs-header__menu a:hover::after {
    width: 100%;
}

.hs-header__menu a:hover {
    color: #fff;
}

.hs-header.is-scrolled .hs-header__menu a {
    color: #666;
}

.hs-header.is-scrolled .hs-header__menu a:hover {
    color: #d32978;
}

/* Mobile toggle */
.hs-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 10;
}

.hs-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hs-header.is-scrolled .hs-header__toggle span {
    background: #3d2f35;
}

.hs-header__toggle span:nth-child(1) { top: 0; }
.hs-header__toggle span:nth-child(2) { top: 9px; }
.hs-header__toggle span:nth-child(3) { top: 18px; }

.hs-header__toggle.is-active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}
.hs-header__toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.hs-header__toggle.is-active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hs-header {
        padding: 0 24px;
    }

    .hs-header__toggle {
        display: block;
    }

    .hs-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }

    .hs-header__nav.is-open {
        right: 0;
    }

    .hs-header__menu {
        flex-direction: column;
        gap: 28px;
    }

    .hs-header__menu a {
        color: #3d2f35;
        font-size: 0.9rem;
    }

    .hs-header__menu a:hover {
        color: #d32978;
    }
}
