/* NAV SHELL */
.nav-shell{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255, 248, 250, 0.88);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(192, 132, 151, 0.18);
    box-shadow:0 6px 18px rgba(75, 46, 57, 0.05);
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 34px;
}

/* BRAND */
.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-wordmark{
    font-size:22px;
    font-weight:700;
    letter-spacing:-0.03em;
    color:#4b2e39;
    line-height:1;
}

.brand-tagline{
    font-size:12px;
    color:#8a6b76;
    margin-top:4px;
}

/* NAV ACTIONS */
.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.login-link{
    text-decoration:none;
    color:#5a3b46;
    font-size:14px;
    font-weight:600;
    padding:10px 14px;
    border-radius:10px;
    transition:0.2s;
}

.login-link:hover{
    background:rgba(192,132,151,0.12);
    color:#c08497;
}

/* HAMBURGER */
.menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:14px;
    border:1px solid rgba(192, 132, 151, 0.2);
    background:rgba(255,255,255,0.88);
    color:#5a3b46;
    box-shadow:0 8px 18px rgba(75, 46, 57, 0.08);
    cursor:pointer;
}

/* DRAWER */
.nav-drawer{
    display:none;
    padding:0 24px 18px;
    background:rgba(255,248,250,0.96);
}

.nav-drawer.open{
    display:block;
}

.nav-drawer-panel{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    padding:18px;
    background:white;
    border-radius:22px;
    border:1px solid rgba(192,132,151,0.16);
    box-shadow:0 14px 28px rgba(75, 46, 57, 0.08);
}

/* LINKS */
.nav-drawer-panel a{
    text-decoration:none;
    color:#5a3b46;
    font-size:15px;
    font-weight:600;
    padding:14px 16px;
    border-radius:14px;
    background:#fcf7f8;
    transition:0.2s;
}

.nav-drawer-panel a:hover{
    background:white;
    color:#c08497;
}

/* CTA */
.nav-drawer-panel .demo-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #c08497, #a96f84);
    color:white !important;
}

/* MOBILE */
@media (max-width:900px){

    .login-link{
        display:none;
    }

    .nav-drawer-panel{
        grid-template-columns:1fr;
    }
}

@media (max-width:480px){
    .navbar{
        padding:18px 24px;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .brand-wordmark{
        font-size:24px;
    }

    .brand-tagline{
        display:none;
    }

    .login-link{
        display:none;
    }

    .menu-toggle{
        width:48px;
        height:48px;
        border-radius:14px;
    }
}