:root {
  --bg: #100816;
  --bg-soft: #1b1024;
  --panel: #25142f;
  --text: #fff8ef;
  --muted: #d8c8dc;
  --accent: #f2b84b;
  --accent-dark: #a36516;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --error: #ffb4b4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 184, 75, 0.22), transparent 34rem),
    linear-gradient(135deg, #100816 0%, #1f0f2d 55%, #07040a 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 8, 22, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-link {
  color: var(--text);
}

.brand-link:hover {
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1b1024;
  background: linear-gradient(135deg, #ffe4a4, var(--accent));
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 22px rgba(242, 184, 75, 0.25);
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text);
}

.hero {
  padding: 92px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  letter-spacing: -0.06em;
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.button.primary {
  color: #1b1024;
  background: var(--accent);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-card,
.card,
.event-box,
.ticket-card {
  background: rgba(37, 20, 47, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
}

.section {
  padding: 78px 0;
}

.ticket-page {
  min-height: calc(100vh - 160px);
}

.section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
}

.event-box {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  margin-top: 28px;
}

.event-date {
  min-height: 170px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), #fff0bb);
  color: #1b1024;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date .day {
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 900;
}

.event-date .month {
  font-weight: 800;
}

.event-list {
  padding-left: 20px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.card,
.ticket-card {
  padding: 26px;
}

.card p,
.section-contact p,
.hero-card p,
.two-columns p,
.ticket-card p,
.small-note {
  color: var(--muted);
}

.ticket-form {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.ticket-form label {
  font-weight: 700;
}

.ticket-form input[type="text"],
.ticket-form input[type="email"],
.ticket-form input[type="number"],
.ticket-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #1b1024;
  font: inherit;
}

.ticket-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 400 !important;
}

.checkbox-row input {
  margin-top: 6px;
}

.form-button {
  margin-top: 12px;
  width: fit-content;
}

.small-note {
  font-size: 0.95rem;
  margin-top: 18px;
}

.message-card {
  margin-top: 20px;
}

.summary-box {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-box p {
  margin: 6px 0;
}

.error-card {
  border-color: rgba(255, 180, 180, 0.55);
}

.error-list {
  color: var(--error);
  margin-bottom: 24px;
}

.placeholder {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 800px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .two-columns,
  .event-box,
  .cards {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 12px;
  }

  .form-button {
    width: 100%;
  }
}

.legal-page {
  min-height: calc(100vh - 160px);
}

.legal-card h2 {
  font-size: 1.45rem;
  margin-top: 32px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
}

.legal-card ul {
  margin-top: 0;
}
