:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f5f1ea;
  --fg-muted: #8a857d;
  --accent: #ff3b1f;
  --border: #1f1f1f;
  --max-w: 1180px;
  --display: "Helvetica Neue", "Inter", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--fg-muted); }
.small { font-size: 0.875rem; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  text-transform: lowercase;
}
.nav { display: flex; gap: 1.75rem; }
.nav a {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.nav a.active, .nav a:hover { color: var(--fg); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,59,31,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(255,59,31,0.08), transparent 60%),
    var(--bg);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 0 0 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36rem;
  color: var(--fg-muted);
  margin: 0 0 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
}
.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
}
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Marquee strip */
.strip {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.marquee {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  padding: 0.85rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Page header */
.page-header {
  padding: 5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: lowercase;
}
.lead { font-size: 1.15rem; color: var(--fg); margin-top: 1rem; }

/* Show list (home) */
.show-list { list-style: none; padding: 0; margin: 0; }
.show-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}
.show-list li:last-child { border-bottom: 1px solid var(--border); }
.show-list span { display: block; margin-top: 0.25rem; font-size: 0.85rem; }

/* Ticket list (tickets page) */
.ticket-list { list-style: none; padding: 0; margin: 0; }
.ticket-list li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.ticket-list li:last-child { border-bottom: 1px solid var(--border); }
.ticket-date {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ticket-date strong { display: block; font-size: 2rem; line-height: 1; }
.ticket-info h3 { margin: 0 0 0.25rem; font-size: 1.25rem; }
.ticket-info .muted { font-size: 0.9rem; }
.sold-out { color: var(--fg-muted); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* Merch grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.merch-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.merch-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.merch-img {
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.merch-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.merch-body h3 { margin: 0; font-size: 1.05rem; }
.merch-price { color: var(--accent); font-weight: 700; }
.merch-card .btn { margin-top: auto; text-align: center; }

/* Signup */
.signup {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.signup input {
  flex: 1 1 240px;
  padding: 0.9rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 1rem;
  font-family: inherit;
}
.signup input:focus { outline: none; border-color: var(--accent); }
.signup-msg { color: var(--accent); width: 100%; margin: 0.5rem 0 0; font-size: 0.875rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}
.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin: 0 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--fg); font-size: 0.9rem; }

code {
  background: #1a1a1a;
  padding: 0.15rem 0.4rem;
  font-size: 0.85em;
  border-radius: 2px;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; max-width: 520px; }
.contact-form label { display: block; }
.contact-form label span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 2px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form .btn { align-self: flex-start; }
.contact-msg { min-height: 1.2em; margin: 0; color: var(--fg-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 760px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .ticket-list li { grid-template-columns: 1fr; gap: 0.75rem; }
  .ticket-list .btn { justify-self: start; }
  .hero-inner { padding: 4rem 1.5rem; }
}
