/* ── WEBFLOW PRELOADER / VISIBILITY FIXES ── */
.preloader { display: none !important; }

body {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── NAVBAR POSITION FIX ── */
.section-navbar {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.navbar.w-nav {
    margin-top: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

.navbar-container.mobile.w-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.navbar-flexbox {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

/* ── NAV MENU: SOLO DESKTOP (no romper mobile) ── */
@media (min-width: 992px) {
    .w-nav-menu {
        display: flex !important;
    }
}

/* ── FROSTY ── */
.frosty {
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    backdrop-filter: saturate(200%) blur(20px);
}

/* ── STICKY BANNER ── */
.ub-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px;
    font-family: "Geist", sans-serif;
    font-size: .80rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #1a1004;
    font-weight: 700;
    white-space: nowrap;
}

.ub-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1a1004;
    opacity: .65;
    animation: ubpulse 2s infinite;
    flex-shrink: 0;
}

@keyframes ubpulse {
    0%, 100% { opacity: .65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.ub-sep { color: rgba(26,16,4,.4); font-weight: 400; }

.ub-tag {
    background: rgba(26,16,4,.13);
    color: #1a1004;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .1em;
    font-weight: 700;
    flex-shrink: 0;
}

.ub-cta {
    margin-left: 6px;
    background: #1a1004;
    color: #d4a849;
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .07em;
    font-size: .74rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.ub-cta:hover { background: #000; color: #f0c84e; }

@media (max-width: 760px) {
    .ub-wrap {
        white-space: normal;
        flex-wrap: wrap;
        font-size: .70rem;
        gap: 8px;
        padding: 11px 14px;
        justify-content: center;
    }
    .ub-sep { display: none; }
}