/* Site chrome. Loaded by every page; keep markup in site-header.js only. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(15, 13, 11, 0.86);
  border-bottom: 1px solid var(--line, rgba(212, 175, 55, 0.22));
}
.site-header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--parchment, #f3e6c9);
  text-decoration: none;
  font-weight: 700;
}
.site-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--line, rgba(212, 175, 55, 0.22));
}
.site-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(212, 175, 55, 0.22));
  background: transparent;
  color: var(--parchment, #f3e6c9);
  font-weight: 700;
  cursor: pointer;
}
.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted, #c9b896);
  font-weight: 600;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold, #d4af37);
}
@media (max-width: 900px) {
  .site-menu-btn { display: inline-flex; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0 10px;
  }
  .site-header.is-open .site-nav { display: flex; }
}
