/* header.css — topbar + nav (Single Source of Truth) */
.topbar{
  background: rgba(99,49,6,.92);
  color: #fff;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  font-size: 13px;
}
.top-actions{ display:flex; align-items:center; gap: 10px; flex-wrap:wrap; }
.social{ display:flex; align-items:center; gap: 8px; }
.social-link{
  width: 34px; height: 34px;
  border-radius: 50%;
  display:grid; place-items:center;
  font-weight: 900;
  color:#fff;
  border: 1px solid rgba(255,255,255,.25);
  transition: .2s ease;
}
.social-link:hover{ transform: translateY(-2px); }
.social-link.fb{ background:#1877f2; }
.social-link.yt{ background:#ff0000; }

.header{
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.logo-img{
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand .title strong{
  display:block;
  color: var(--primary);
  font-weight: 900;
}
.brand .title span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
}
.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--primary);
  border: 1px solid transparent;
}
.nav-links a:hover{ background: rgba(216,160,63,.12); }
.nav-links a.is-active{
  background: rgba(216,160,63,.18);
  border-color: rgba(216,160,63,.45);
}
.nav-actions{ display:flex; align-items:center; gap: 10px; }
.hamburger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  font-size: 18px;
  cursor:pointer;
}
.mobile-panel{
  display:none;
  padding-bottom: 14px;
}
.mobile-panel .stack{
  display:grid;
  gap: 8px;
  padding: 10px;
  border-radius: calc(var(--radius) + 6px);
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.mobile-panel .actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px; }

@media (max-width: 980px){
  .nav-links{ display:none; }
  .hamburger{ display:inline-grid; place-items:center; }
  .mobile-panel[data-open="1"]{ display:block; }
}
