.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 246, 241, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 29, 47, 0.08);
}

.site-shell {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.site-nav-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--re-dark, #0f1d2f);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.site-brand-logo {
    max-height: 34px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
}

.site-nav a {
    color: #2f3a48;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
}

.site-nav a.is-active,
.site-mobile-nav a.is-active {
    color: var(--re-primary, #0b7a75);
}

.site-nav a:hover,
.site-mobile-nav a:hover {
    color: var(--re-primary, #0b7a75);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
    background: linear-gradient(120deg, var(--re-secondary, #f07f3a), var(--re-secondary-deep, #c86228));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(201, 98, 40, 0.24);
    text-decoration: none;
}

.site-cta:hover {
    color: #fff;
    filter: brightness(1.05);
}

.site-menu-toggle {
    display: none;
    border: 1px solid rgba(15, 29, 47, 0.16);
    background: var(--re-surface, #fff);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.site-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--re-dark, #0f1d2f);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-mobile-nav {
    display: none;
    background: #f8f2e8;
    border-top: 1px solid rgba(15, 29, 47, 0.1);
    padding: 0.65rem 1rem 1rem;
}

.site-mobile-nav a {
    display: block;
    color: var(--re-dark, #0f1d2f);
    font-weight: 700;
    padding: 0.68rem 0.35rem;
    border-bottom: 1px dashed rgba(15, 29, 47, 0.1);
    text-decoration: none;
}

.site-mobile-nav .mobile-cta {
    margin-top: 0.8rem;
    border-bottom: 0;
}

.site-mobile-nav.is-open {
    display: block;
}

.site-bottom-nav {
    display: none;
}

.site-bottom-more-backdrop,
.site-bottom-more-panel {
    display: none;
}

@media (max-width: 980px) {
    .site-nav {
        display: none;
    }

    .site-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
        -webkit-tap-highlight-color: transparent;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(14px);
    }

    .site-shell {
        width: min(100%, 94vw);
    }

    .site-nav-row {
        min-height: 64px;
        gap: 8px;
    }

    .site-brand {
        font-size: 1.06rem;
        max-width: 72vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .site-brand-logo {
        max-height: 30px;
    }

    .site-nav-actions .site-cta {
        display: none;
    }

    .site-menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .site-mobile-nav {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(15, 29, 47, 0.1);
        box-shadow: 0 14px 28px rgba(15, 29, 47, 0.14);
    }

    .site-mobile-nav a {
        font-size: 0.95rem;
    }

    .site-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        display: block;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 241, 0.98));
        border-top: 1px solid rgba(15, 29, 47, 0.12);
        box-shadow: 0 -10px 24px rgba(15, 29, 47, 0.12);
    }

    .site-bottom-nav-row {
        width: min(100%, 520px);
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .site-bottom-nav a,
    .site-bottom-more {
        text-decoration: none;
        color: #4b5a6d;
        min-height: 52px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        gap: 2px;
        font-weight: 700;
        font-size: 0.62rem;
        letter-spacing: 0.01em;
    }

    .site-bottom-more {
        border: 0;
        background: transparent;
        padding: 0;
    }

    .site-bottom-nav a i {
        font-size: 0.92rem;
    }

    .site-bottom-nav a.is-active,
    .site-bottom-more.is-active {
        color: var(--re-primary, #0b7a75);
        background: rgba(11, 122, 117, 0.12);
    }

    .site-bottom-more-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1051;
        background: rgba(15, 29, 47, 0.42);
        display: block;
    }

    .site-bottom-more-panel {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        z-index: 1052;
        display: block;
        border: 1px solid rgba(15, 29, 47, 0.12);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 18px 36px rgba(15, 29, 47, 0.24);
        padding: 12px;
        transform: translateY(14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .site-bottom-more-panel.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-bottom-more-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 8px;
    }

    .site-bottom-more-head h3 {
        margin: 0;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        color: #122133;
    }

    .site-bottom-more-head button {
        border: 1px solid rgba(15, 29, 47, 0.14);
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: #fff;
        color: #223347;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .site-bottom-more-list {
        display: grid;
        gap: 8px;
    }

    .site-bottom-more-item {
        min-height: 46px;
        border-radius: 12px;
        border: 1px solid #e1e8de;
        text-decoration: none;
        color: #2d3a4a;
        background: #fbfdfb;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 0.48rem 0.72rem;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .site-bottom-more-item.is-active {
        color: var(--re-primary, #0b7a75);
        border-color: rgba(11, 122, 117, 0.4);
        background: rgba(11, 122, 117, 0.1);
    }

    .site-bottom-more-item i {
        width: 18px;
        text-align: center;
    }

    .site-bottom-more-cta {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(120deg, var(--re-secondary, #f07f3a), var(--re-secondary-deep, #c86228));
        box-shadow: 0 8px 18px rgba(201, 98, 40, 0.25);
    }
}
