:root {
  --bg: #0d0d0d;
  --bg-2: #161616;
  --fg: #f5efe4;
  --fg-muted: #b6ada1;
  --accent: #d4a04a;
  --accent-2: #1a3a5c;
  --line: #2a2622;
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #e8b86a;
  text-decoration: underline;
}

img, audio {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: var(--fg);
}

.brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 160, 74, 0.08), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(26, 58, 92, 0.18), transparent 60%),
    linear-gradient(to bottom, #0a0a0a, #0d0d0d);
  padding: 120px 0 140px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.kicker {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.hero h1 .line-1 {
  display: block;
  font-size: clamp(40px, 8vw, 88px);
}

.hero h1 .line-2 {
  display: block;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  color: var(--fg-muted);
  margin: 8px 0;
}

.hero h1 .line-3 {
  display: block;
  font-size: clamp(40px, 8vw, 88px);
  color: var(--accent);
}

.tagline {
  font-size: 18px;
  color: var(--fg-muted);
  margin: 32px auto 40px;
  max-width: 600px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a1208;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #e8b86a;
  border-color: #e8b86a;
  text-decoration: none;
  color: #1a1208;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--bg-2);
  text-decoration: none;
  color: var(--fg);
  border-color: var(--accent);
}

/* Sections */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--bg-2);
}

.section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.section p {
  font-size: 17px;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

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

.section .small {
  font-size: 14px;
}

/* Lineup grid */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.lineup-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}

.lineup-card:hover {
  border-color: var(--accent);
}

.lineup-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--accent);
}

.lineup-card p {
  margin: 0;
  font-size: 15px;
}

/* Song grid */
.song-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 24px;
}

.song-grid li {
  font-family: var(--serif);
  font-size: 17px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
}

/* Player grid */
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.player-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.player-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--fg);
}

.player-card audio {
  width: 100%;
  margin: 0 0 12px;
}

.player-card p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Form */
.booking-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }
}

.booking-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.15s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking-form button {
  align-self: flex-start;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  padding: 48px 0 64px;
  background: var(--bg);
  text-align: center;
}

.brand-foot {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 12px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: #5a5550;
  letter-spacing: 0.04em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
