/* Общая шапка сайта: одинаковая на всех страницах, кроме лендинга (там она поверх обложки). */
.sitebar{background:#17110C;padding:16px 0;position:sticky;top:0;z-index:20}
.sitebar .wrap{display:flex;align-items:center;justify-content:space-between;gap:14px}
.sitebar .logo{font-family:"Grenze Gotisch",Georgia,serif;font-size:25px;color:#FAF6EF;text-decoration:none;
               display:flex;align-items:center;white-space:nowrap}
.sitebar .logo-mark{width:28px;height:28px;margin-right:9px}
.sitemenu{display:flex;align-items:center;gap:8px}
.sitemenu a{color:#E6D9C6;text-decoration:none;font-size:14px;padding:8px 13px;border:1px solid transparent;border-radius:7px}
.sitemenu a:hover{background:rgba(200,136,58,.16);border-color:rgba(200,136,58,.7);color:#FDF8F0}
.sitemenu a.active{color:#FDF8F0;border-color:rgba(200,136,58,.55);background:rgba(200,136,58,.1)}
.sitemenu a.login{border-color:rgba(250,246,239,.45);color:#FDF8F0}
.sitebar .burger{display:none;width:44px;height:40px;padding:0;cursor:pointer;background:transparent;
                 border:1px solid rgba(250,246,239,.35);border-radius:8px;align-items:center;justify-content:center}
.sitebar .burger span,.sitebar .burger span::before,.sitebar .burger span::after{
  display:block;width:18px;height:2px;background:#E6D9C6;position:relative;transition:transform .18s}
.sitebar .burger span::before,.sitebar .burger span::after{content:"";position:absolute;left:0}
.sitebar .burger span::before{top:-6px}
.sitebar .burger span::after{top:6px}
.sitebar.open .burger span{background:transparent}
.sitebar.open .burger span::before{transform:translateY(6px) rotate(45deg)}
.sitebar.open .burger span::after{transform:translateY(-6px) rotate(-45deg)}

/* Подменю: разделы страницы (на лендинге — якоря, на портале — свои ссылки). */
.subnav{background:#221913;border-bottom:1px solid #2f231a;position:sticky;top:0;z-index:19}
.subnav .wrap{display:flex;gap:6px;overflow-x:auto;padding-top:9px;padding-bottom:9px}
.subnav a{color:#C6B49B;text-decoration:none;font-size:13.5px;white-space:nowrap;padding:6px 12px;border-radius:6px}
.subnav a:hover{background:rgba(200,136,58,.16);color:#FDF8F0}

@media(max-width:820px){
  .sitebar .burger{display:flex}
  .sitebar{position:relative}
  .sitemenu{display:none;position:absolute;top:100%;left:16px;right:16px;flex-direction:column;gap:6px;
            background:#1E1610;border:1px solid #33261B;border-radius:12px;padding:12px;z-index:30}
  .sitebar.open .sitemenu{display:flex}
  .sitemenu a{text-align:center;padding:13px 16px;font-size:15px}
}
