:root {
  --bg: #0f0712;
  --bg-soft: #170b1d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #fff5fb;
  --muted: rgba(255, 245, 251, 0.72);
  --accent: #ff2f78;
  --accent-2: #f8b5d1;
  --gold: #f6d38a;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 47, 120, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(246, 211, 138, 0.08), transparent 22%),
    linear-gradient(180deg, #140713 0%, #0f0712 40%, #09040b 100%);
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 4, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand-logo,
.footer-logo {
  height: auto;
  width: 230px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--text);
}

.hero {
  padding-top: 58px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2,
.vip-copy h2 {
  margin: 0 0 18px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 11ch;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.vip-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-text,
.section-copy p,
.section-heading p,
.contact-copy p,
.vip-copy p,
.event-card p,
.feature-item p,
.vip-card p,
.form-note {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff5f9c);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 47, 120, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border);
}

.btn-block {
  width: 100%;
}

.hero-highlights,
.vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-highlights li,
.vip-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.hero-highlights li::before,
.vip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 4px rgba(255, 47, 120, 0.12);
}

.hero-frame,
.stack-card,
.gallery-card,
.contact-form,
.vip-card,
.event-card,
.stat-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-frame {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  padding: 18px;
}

.hero-frame img {
  width: 100%;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  background: rgba(12, 7, 16, 0.84);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 14px 16px;
  min-width: 185px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.36);
}

.floating-card span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.floating-card strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.card-a {
  left: -18px;
  bottom: 44px;
}

.card-b {
  right: -18px;
  top: 36px;
}

.stats-band {
  padding-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px 22px;
  border-radius: 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-item {
  padding: 22px 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item h3,
.event-card h3,
.contact-form h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.stack-card,
.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

.stack-card.large img {
  min-height: 420px;
  object-fit: cover;
}

.stack-card.small img {
  min-height: 220px;
  object-fit: cover;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.events-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  padding: 28px;
  border-radius: 24px;
}

.event-day {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 47, 120, 0.14);
  border: 1px solid rgba(255, 47, 120, 0.24);
  color: var(--accent-2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vip-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255, 47, 120, 0.08));
  box-shadow: var(--shadow);
}

.vip-card {
  padding: 28px;
  border-radius: 26px;
}

.vip-price {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--muted);
}

.vip-price strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 2.6rem;
}

.gallery-card img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
}

.contact-form {
  padding: 30px;
  border-radius: 26px;
}

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

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

input:focus,
textarea:focus {
  border-color: rgba(255, 47, 120, 0.48);
  box-shadow: 0 0 0 3px rgba(255, 47, 120, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.footer {
  padding: 26px 0 46px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

.footer p {
  color: var(--muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .vip-panel,
  .events-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .card-a,
  .card-b {
    position: static;
    margin-top: 12px;
  }

  .hero-frame {
    padding-bottom: 18px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(12, 6, 15, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .brand-logo,
  .footer-logo {
    width: 190px;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .vip-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }
}
