:root {
  --bg: #0c0e11;
  --bg-deep: #080a0c;
  --bg-panel: #161c24;
  --bg-hover: #1c242e;
  --text: #e6eaef;
  --text-muted: #8b95a5;
  --link: #6ee7a8;
  --link-hover: #a7f3c8;
  --accent: #22c55e;
  --accent-gold: #fbbf24;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --font-sans: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 42rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -40%, rgba(34, 197, 94, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(251, 191, 36, 0.05), transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--link-hover);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.lede {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.lede strong {
  color: var(--text);
  font-weight: 600;
}

section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

h2 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.meta-block {
  display: grid;
  gap: 1.25rem;
}

.meta-item dt {
  margin: 0 0 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-item dd {
  margin: 0;
  color: var(--text);
}

.hotel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hotel-list li {
  padding: 0.65rem 0.85rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.hotel-list a {
  font-weight: 600;
  text-decoration: none;
}

.hotel-list a:hover {
  text-decoration: underline;
}

.tickets {
  padding: 1.25rem 1.35rem;
  background: var(--bg-panel);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
}

.tickets__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tickets__soon {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 600;
}

.tickets__note {
  margin: 0;
  font-size: 0.9375rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: not-allowed;
  opacity: 0.55;
  color: var(--text-muted);
  background: var(--bg-hover);
}

.footer-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.footer-note a {
  font-weight: 500;
}
