
:root {
  --bg: #09090b;
  --panel: #18181b;
  --panel2: #101012;
  --border: #27272a;
  --text: #f4f4f5;
  --muted: #d4d4d8;
  --soft: #a1a1aa;
  --green: #4ade80;
  --green2: #86efac;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: white;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: white;
}

.menu-button {
  display: none;
  border: 1px solid #3f3f46;
  background: transparent;
  color: var(--text);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top, rgba(74, 222, 128, 0.16), transparent 35%),
    radial-gradient(circle at bottom left, rgba(113, 113, 122, 0.18), transparent 40%);
}

.hero-content {
  padding: 96px 0;
}

.page-hero {
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.section {
  padding: 76px 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
  color: white;
}

h1 {
  font-size: clamp(2.55rem, 8vw, 4rem);
  letter-spacing: -0.04em;
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.7rem);
  letter-spacing: -0.035em;
  font-weight: 950;
}

h3 {
  font-size: 1.35rem;
  font-weight: 950;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 760px;
  margin-top: 24px;
}

.label {
  color: var(--green2);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
  font-weight: 950;
  margin: 0 0 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 13px 22px;
  background: var(--green);
  color: #09090b;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.16s ease;
}

.button:hover {
  transform: scale(1.02);
  background: var(--green2);
}

.button.outline {
  background: transparent;
  color: var(--text);
  border-color: #3f3f46;
}

.button.outline:hover {
  background: var(--panel);
}

.stat-grid,
.card-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.stat,
.card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 24px;
  padding: 24px;
}

.stat {
  color: var(--muted);
  font-weight: 800;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.event-list {
  display: grid;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 28px;
  padding: 26px;
}

.event-meta {
  color: var(--green2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
  font-weight: 950;
  margin: 0 0 12px;
}

.event-location {
  color: var(--muted);
  font-weight: 800;
  margin: 8px 0 0;
}

.event-description {
  max-width: 820px;
  color: var(--soft);
  margin-top: 16px;
}

.price {
  color: white;
  font-weight: 950;
  margin-top: 16px;
}

.event-actions {
  display: grid;
  gap: 12px;
  min-width: 210px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3f3f46;
  border-radius: 18px;
  padding: 13px 22px;
  color: var(--soft);
  font-weight: 900;
  text-align: center;
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.list li {
  border: 1px solid var(--border);
  background: var(--panel2);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.check {
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #09090b;
  font-weight: 950;
  font-size: 0.78rem;
  margin-top: 3px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #09090b;
  font-size: 1.25rem;
  font-weight: 950;
  margin-bottom: 20px;
}

.callout {
  margin-top: 32px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.1);
  border-radius: 28px;
  padding: 28px;
  text-align: center;
}

.contact-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-links a {
  color: var(--green2);
  text-underline-offset: 4px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #3f3f46;
  background: #09090b;
  color: white;
  border-radius: 18px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green2);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button.submit {
  border: 0;
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--border);
  background: #000;
  padding: 28px 0;
  color: #71717a;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 16px;
    padding: 12px 14px;
  }

  .hero-content {
    padding: 64px 0;
  }

  .detail-grid,
  .contact-grid,
  .event-card {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .card-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .event-actions {
    min-width: 0;
  }

  .button,
  .coming-soon {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
