:root {
  /* Palette per feral_fever_requirements.docx:
   * near-black (plum-tinted) bg, deep aubergine raised surfaces,
   * antique gold as primary accent, warm cream foreground — never pure white.
   * Variable names preserved so existing per-page CSS keeps working:
   *   --accent is now the antique gold (was rose/pink)
   *   --gold is kept as an alias to --accent for backwards compatibility
   */
  --bg: #14090d;           /* near-black, plum undertone */
  --bg-raised: #2a1530;    /* deep aubergine — cards, nav, raised surfaces */
  --fg: #f5ecd9;           /* warm cream, never pure white */
  --fg-dim: #d8c9b3;       /* dimmer cream for secondary text */
  --muted: #9d8a96;        /* muted plum-gray for tertiary / footer text */
  --accent: #c9a15b;       /* antique gold — primary accent, replaces rose */
  --accent-bright: #e0b96d; /* brighter gold for hover states */
  --gold: #c9a15b;         /* alias to --accent; retained for existing refs */
  --plum: #6b2b5f;         /* mid-plum for decorative moments if needed */
  --border: #3a1f3d;       /* deep aubergine border */
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --radius: 6px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-bright); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Didot, "Bodoni 72", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-style: italic; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.muted { color: var(--muted); }
.dim { color: var(--fg-dim); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(20, 9, 13, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.site-nav .brand {
  font-family: "Playfair Display", Didot, Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.site-nav .brand:hover { color: var(--accent-bright); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.site-nav ul a {
  color: var(--fg);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-nav ul a:hover { color: var(--gold); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}
.page-title h1 { margin-bottom: 0.25rem; }
.page-title .tagline {
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { color: var(--muted); text-decoration: underline; }
footer a:hover { color: var(--accent); }
footer .legal-links { margin-top: 0.5rem; font-size: 0.8rem; letter-spacing: 0.05em; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-bright);
  color: var(--bg);
}

/* ── Cards (shared across shows + performers) ────────────────────────────── */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.card a { color: inherit; display: block; }

/* ── Empty state ─────────────────────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 640px) {
  .site-nav { padding: 1rem; flex-direction: column; gap: 0.75rem; }
  .site-nav ul { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  main { padding: 2rem 1rem 4rem; }
}
