:root {
  --bg: #0b0b0b;
  --surface: #151515;
  --surface-2: #1a1a1a;
  --text: #f4efe6;
  --muted: #bdb4a5;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #842028;
  --accent-hover: #9a2630;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --container: 1160px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#tickets {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(var(--narrow), 100%);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.54);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.header-button,
.button,
.mobile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-button:hover,
.button:hover,
.mobile-button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
}

.hero-compact {
  min-height: 76vh;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.38) 32%, rgba(0,0,0,0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
}

.hero-compact .hero-content {
  min-height: 76vh;
}

.hero-text {
  max-width: 640px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: #d4c7b2;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.intro-direct h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(60px, 10vw, 108px);
  margin-bottom: 12px;
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.7vw, 30px);
  color: #efe7d9;
}

.hero-description {
  max-width: 560px;
  margin: 0 0 28px;
  color: #ddd4c7;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 84px 0;
}

.section-title,
.intro-direct h2 {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

.lead,
.intro-direct p,
.soft-cta-box p,
.final-box p,
.ticket-note,
.address-line {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.info-grid {
  display: grid;
  gap: 14px;
}

.info-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  background: rgba(21, 21, 21, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-card strong {
  font-size: 18px;
  font-weight: 600;
}

.photo-grid {
  display: grid;
  gap: 16px;
}

.photo-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.photo-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-box {
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
}

.footer-inner {
  color: var(--muted);
  font-size: 14px;
}

.mobile-button {
  position: fixed;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 60;
  display: none;
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
  padding-left: 24px;
  padding-right: 24px;
}

/* TicketsCloud button override */
button[data-tc-event] {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-height: 48px !important;

  align-items: center !important;
  justify-content: center !important;

  background: #842028 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;

  padding: 0 22px !important;
  font: inherit !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.1s ease !important;

  -webkit-appearance: none !important;
  appearance: none !important;
}

button[data-tc-event]:hover {
  background: #9a2630 !important;
}

button[data-tc-event]:active {
  transform: translateY(1px) !important;
}

button[data-tc-event]::before,
button[data-tc-event]::after {
  display: none !important;
}

button[data-tc-event]:focus {
  outline: none !important;
}

button[data-tc-event]:focus-visible {
  outline: 2px solid rgba(255,255,255,0.4) !important;
  outline-offset: 2px;
}

button.header-button[data-tc-event],
button.button[data-tc-event],
button.mobile-button[data-tc-event] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

button.mobile-button[data-tc-event] {
  width: auto !important;
  min-width: 180px !important;
  max-width: 260px !important;
}

/* Responsive */
@media (max-width: 980px) {
  .info-grid-4,
  .photo-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .header-button {
    display: none;
  }

  .info-grid-4,
  .photo-grid-3 {
    grid-template-columns: 1fr;
  }

  .mobile-button {
    display: inline-flex;
  }

  body {
    padding-bottom: 84px;
  }
}