/* Unchained — gemeinsame Basis (Fonts + Design-Tokens + Hero) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root{
  --bg:#12151a;
  --bg-alt:#0d0f13;
  --panel:#1b2029;
  --panel2:#232a35;
  --border:#333c48;
  --border-soft:#282f3a;
  --text:#e9e7df;
  --muted:#93a0ac;
  --gold:#c99a4a;
  --gold-soft:#e4c584;
  --danger:#e0645a;
  --ok:#6fae7c;
}
*{box-sizing:border-box;}
.wrap{max-width:1260px;margin:0 auto;padding:36px 20px 0;}
header.hero{
  border-bottom:1px solid var(--border-soft);
  padding-bottom:26px;
  margin-bottom:30px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  flex-wrap:wrap;
}
.hero-title{
  font-family:'Cinzel',serif;
  font-weight:700;
  font-size:30px;
  letter-spacing:.5px;
  color:var(--gold-soft);
  margin:0 0 6px;
}
