/* ════════════════════════════════════════
   Flower Moon — Shared Site Header
   ════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,232,0.2);
  padding: 12px 32px;
  display: flex;
  align-items: center;
}

.site-header a.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header .brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-header .brand-name {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #3a2d45;
  line-height: 1;
}

@media (max-width: 480px) {
  .site-header { padding: 10px 20px; }
  .site-header .brand-logo { height: 28px; }
  .site-header .brand-name { font-size: 1rem; }
}
