:root{
    --bg:#fcf8f5;
    --card:#ffffff;
    --text:#241f20;
    --muted:#7e6d67;
    --heading:#3b2230;
    --accent:#6f4055;
    --line:#e9ddd6;
}

*{
    box-sizing:border-box;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1200;
    backdrop-filter:blur(16px);
    background:rgba(255,252,250,0.92);
    border-bottom:1px solid rgba(233,221,214,0.95);
}

.site-header__inner{
    width:min(1240px, calc(100% - 28px));
    margin:0 auto;
    height:72px;
    display:grid;
    grid-template-columns:52px 1fr auto;
    align-items:center;
    gap:12px;
}

.site-brand{
    text-align:center;
    text-decoration:none;
    color:inherit;
    line-height:1.1;
}

.site-brand__title{
    font-size:24px;
    font-weight:700;
    color:var(--heading);
    letter-spacing:.4px;
}

.site-brand__subtitle{
    margin-top:3px;
    font-size:11px;
    color:var(--muted);
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.site-header__actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.icon-circle{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid var(--line);
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    text-decoration:none;
    color:#2f2726;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,0.04);
}

.side-drawer{
    position:fixed;
    inset:0;
    z-index:1300;
    pointer-events:none;
}

.side-drawer.is-open{
    pointer-events:auto;
}

.side-drawer__overlay{
    position:absolute;
    inset:0;
    background:rgba(20,14,14,0.34);
    opacity:0;
    transition:.25s ease;
}

.side-drawer.is-open .side-drawer__overlay{
    opacity:1;
}

.side-drawer__panel{
    position:absolute;
    top:0;
    left:0;
    width:min(86vw, 360px);
    height:100%;
    background:#fff;
    transform:translateX(-100%);
    transition:.28s ease;
    padding:24px 20px;
    box-shadow:18px 0 40px rgba(0,0,0,0.12);
    overflow-y:auto;
}

.side-drawer.is-open .side-drawer__panel{
    transform:translateX(0);
}

.side-drawer__top{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.side-drawer__hello{
    margin-bottom:18px;
    color:var(--heading);
    font-size:18px;
    font-weight:700;
}

.side-drawer__nav{
    display:flex;
    flex-direction:column;
}

.side-drawer__link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:14px 0;
    border:none;
    background:none;
    border-bottom:1px solid var(--line);
    color:#3b3230;
    font-weight:600;
    font-size:15px;
    text-align:left;
    text-decoration:none;
    cursor:pointer;
}

.side-drawer__link.is-active{
    color:var(--accent);
}

.side-drawer__toggle{
    font:inherit;
}

.side-drawer__chevron{
    transition:transform .25s ease;
}

.side-drawer__chevron.is-open{
    transform:rotate(180deg);
}

.side-drawer__subnav{
    display:none;
    border-bottom:1px solid var(--line);
    padding:6px 0 10px;
}

.side-drawer__subnav.is-open{
    display:block;
}

.side-drawer__subnav a{
    display:block;
    padding:10px 8px 10px 14px;
    font-size:14px;
    color:#5f504a;
    border-radius:10px;
    text-decoration:none;
}

.side-drawer__subnav a:hover{
    background:#faf4f0;
}

.side-drawer__logout{
    color:#7a3e4f;
}

.site-footer{
    margin-top:48px;
    background:#fff;
    border-top:1px solid #e9ddd6;
}

.site-footer__inner{
    width:min(1240px, calc(100% - 28px));
    margin:0 auto;
    padding:26px 0 30px;
}

.site-footer__brand h3{
    margin:0 0 6px;
    font-size:22px;
    color:#3b2230;
}

.site-footer__brand p{
    margin:0 0 16px;
    color:#7e6d67;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.site-footer__links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.site-footer__links a{
    color:#5c4f57;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.site-footer__copy{
    color:#8d7d76;
    font-size:13px;
}

@media (max-width:560px){
    .site-header__inner{
        height:66px;
        grid-template-columns:46px 1fr auto;
    }

    .site-brand__title{
        font-size:22px;
    }

    .icon-circle{
        width:40px;
        height:40px;
        font-size:18px;
    }
}