*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --ink: #ededed;
  --ink-muted: #a1a1a1;
  --ink-faint: #6b6b6b;
  --orange: #f54e00;
  --orange-dim: rgba(245, 78, 0, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max: 720px;
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glow { display: none; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Ambient glow */
.glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 900px;
  height: 50vh;
  background: radial-gradient(ellipse, rgba(245, 78, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Skyline */
.skyline {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42vh;
  max-height: 380px;
  pointer-events: none;
  z-index: 0;
  color: var(--ink);
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

.skyline svg {
  width: 100%;
  height: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-lockup {
  height: 18px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-sub {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border-strong);
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
}

nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Main */
main {
  position: relative;
  z-index: 1;
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
  padding: calc(var(--header-h) + 5rem) clamp(1.25rem, 5vw, 2.5rem) 10rem;
}

/* Hero */
.hero {
  margin-bottom: 5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}

.status-badge.closed {
  background: var(--bg-elevated);
  color: var(--ink-muted);
}

.status-note {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* Sections */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}

.section-content p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink) !important;
  line-height: 1.6;
  margin-bottom: 1rem !important;
  letter-spacing: -0.01em;
}

/* Details grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.75rem 2.5rem;
}

.detail dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.3rem;
}

.detail dd {
  font-size: 0.9375rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Schedule */
.schedule {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.schedule li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.schedule li:last-child {
  border-bottom: none;
}

.schedule time {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  padding-top: 0.1rem;
}

.schedule strong {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.schedule span {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* Venue */
.venue {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.venue h2 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}

.venue p {
  color: var(--ink-muted);
}

.venue-note {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.map-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 1.125rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}

.map-link:hover,
.map-link:focus-visible {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.2);
}

.map-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
}

.footer-inner {
  max-width: calc(var(--max) + 5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-inner p {
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

.footer-inner a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--ink);
}

.footer-copy {
  margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
  nav a:nth-child(2),
  nav a:nth-child(3) {
    display: none;
  }

  .schedule li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero {
    margin-bottom: 3.5rem;
  }
}
