:root {
  --burgundy-950: #26040d;
  --burgundy-900: #3a0714;
  --burgundy-800: #5d1024;
  --burgundy-650: #8f1835;
  --gold-500: #f4c542;
  --gold-300: #ffe38a;
  --gold-100: #fff4c9;
  --ink: #211014;
  --paper: #fffaf0;
  --paper-strong: #fffdf8;
  --cool: #e6f2f0;
  --muted: #74565f;
  --line: rgba(93, 16, 36, 0.18);
  --shadow: 0 26px 80px rgba(38, 4, 13, 0.24);
}

/* Locked reference header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  color: white;
  background: rgba(38, 4, 13, 0.9);
  border-bottom: 1px solid rgba(244, 197, 66, 0.32);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; flex: 1 1 auto; min-width: 0; max-width: 53rem; gap: 1rem; color: white; text-decoration: none; }
.brand > span:last-child { flex: 1; min-width: 0; }
.brand-symbol {
  position: relative; display: block; width: 3rem; height: 3rem;
  border: 1px solid rgba(244, 197, 66, 0.45); border-radius: 0.6rem;
  background: radial-gradient(circle at 30% 32%, var(--gold-500) 0 0.46rem, transparent 0.48rem), radial-gradient(circle at 70% 30%, var(--gold-300) 0 0.22rem, transparent 0.24rem), radial-gradient(circle at 72% 72%, var(--gold-500) 0 0.33rem, transparent 0.35rem), linear-gradient(135deg, var(--burgundy-650), var(--burgundy-950));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}
.brand-symbol span { position: absolute; height: 1px; background: rgba(255, 227, 138, 0.75); transform-origin: left center; }
.brand-symbol span:nth-child(1) { width: 1.2rem; left: 0.95rem; top: 1rem; rotate: 16deg; }
.brand-symbol span:nth-child(2) { width: 1rem; left: 1.8rem; top: 1.05rem; rotate: 92deg; }
.brand-symbol span:nth-child(3) { width: 1.05rem; left: 1.8rem; top: 2.1rem; rotate: -148deg; }
.brand-symbol span:nth-child(4) { width: 1.25rem; left: 0.92rem; top: 1rem; rotate: 75deg; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; letter-spacing: 0.02em; }
.brand small { max-width: 48rem; color: rgba(255, 244, 201, 0.82); font-size: 0.93rem; line-height: 1.35; }
.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a { color: rgba(255, 250, 240, 0.86); padding: 0.58rem 0.82rem; border-radius: 999px; text-decoration: none; }
.nav a:hover { color: var(--burgundy-950); background: var(--gold-500); }


/* Locked reference footer */
.footer { display:flex; flex-wrap:wrap; justify-content:center; gap:.5rem 1rem; padding:2.2rem 1rem 3rem; color:rgba(255,250,240,.72); background:var(--burgundy-950); }
.footer strong { color:var(--gold-500); }

