:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --fg: #f5f5f5;
  --fg-dim: #a0a0a0;
  --accent: #ff2d55;
  --border: #262626;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--fg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 80px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.97) 100%),
    url('hero-bg.jpg') center 10% / cover no-repeat;
}

.hero h1 {
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.95;
}

.hero-sub {
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 36px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.social-row a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}

.social-row a:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

/* SECTIONS */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 5vw;
}

.section.alt { background: var(--bg-alt); max-width: 100%; }
.section.alt > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.section.alt > *:not(:first-child) { margin-top: 24px; }

.section h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 36px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

/* TOUR */
.tour-empty {
  color: var(--fg-dim);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tour-date {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.tour-date .date { font-weight: 700; color: var(--accent); min-width: 120px; }
.tour-date .venue { flex: 1; }
.ticket-link {
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* GRIDS */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.video-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--fg-dim);
}

.embed-single iframe { border-radius: 12px; }

.see-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* PRESS */
.press-list {
  list-style: none;
}

.press-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.press-outlet {
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

/* NEWSLETTER */
.newsletter-section { text-align: center; }
.newsletter-section h2 { border-left: none; padding-left: 0; }
.newsletter-sub { color: var(--fg-dim); margin-bottom: 28px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-size: 0.85rem;
}

/* CONTACT */
.contact-section h2 { border-left: none; padding-left: 0; }
.contact-grid { margin-bottom: 36px; }
.contact-grid h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  margin-bottom: 6px;
}
.contact-grid a { font-size: 1.1rem; }
.footer-social { justify-content: flex-start; }

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 30px;
  color: var(--fg-dim);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 5vw;
    display: none;
    gap: 16px;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-social { justify-content: center; }
}
