/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    width: 100%;
    height: 72px;
    background: #fff;
    border-bottom: 1px solid #f0e5e9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #202124;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--pink);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 9px;
    color: #555;
    background: transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        background .2s ease,
        color .2s ease;
}

.site-nav a:hover {
    color: var(--pink);
}

.site-nav a.active {
    color: var(--pink);
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    border: 1px solid #f0dfe5;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 10px;
}


/* ============================================================
   HEADER — LARGE SCREEN
   ============================================================ */

@media (min-width: 1400px) {

    .header-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

}


/* ============================================================
   HEADER — MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .site-header {
        height: 64px;
    }

    .header-inner {
        padding: 0 16px;
    }

    .logo {
        font-size: 23px;
        letter-spacing: -1.2px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto;
        padding: 8px;
        background: #fff;
        border: 1px solid #f1e5e9;
        border-radius: 14px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        z-index: 1100;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 10px;
        white-space: normal;
    }

}