/*
Theme Name: Dub & Bud
Theme URI: https://dubandbud.com
Author: Dub & Bud KC
Author URI: https://dubandbud.com
Description: Official theme for Dub & Bud — Sound System Events, Kansas City. DnB, Reggae, Dub & Cannabis Culture.
Version: 1.0
License: GNU General Public License v2 or later
Tags: events, music, cannabis, dark, custom
Text Domain: dubandbud
*/

/* ============================================================
   IMPORTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;700;800;900&display=swap');

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --green:       #b5ff2e;
  --green-dim:   rgba(181,255,46,0.15);
  --green-faint: rgba(181,255,46,0.06);
  --black:       #080808;
  --black-mid:   #111111;
  --black-soft:  #1a1a1a;
  --white:       #ffffff;
  --grey-dark:   #2a2a2a;
  --grey-mid:    #444444;
  --grey-light:  #888888;
  --font:        'League Spartan', sans-serif;
  --radius:      6px;
  --transition:  0.25s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

p { margin-bottom: 1.2em; }
ul, ol { padding-left: 1.5em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--tight { padding: 50px 0; }

/* ============================================================
   HALFTONE DOT TEXTURE UTILITY
============================================================ */
.halftone {
  position: relative;
}
.halftone::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(181,255,46,0.05) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 0;
}
.halftone > * { position: relative; z-index: 1; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}
.btn--primary:hover {
  background: transparent;
  color: var(--green);
  opacity: 1;
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--black);
  opacity: 1;
}

/* ============================================================
   SITE HEADER & NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181,255,46,0.1);
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo in header */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.logo-stamp {
  border: 2.5px solid var(--green);
  border-radius: 4px;
  padding: 4px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.logo-stamp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(181,255,46,0.04) 1px, transparent 1px);
  background-size: 5px 5px;
}
.logo-banner {
  background: var(--green);
  margin: -4px -14px 4px;
  padding: 2px 14px;
  width: calc(100% + 28px);
  text-align: center;
}
.logo-banner span {
  font-family: var(--font);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
}
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.logo-dub, .logo-bud {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.logo-badge {
  width: 26px;
  height: 26px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-badge span {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  margin-top: 1px;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--green); opacity: 1; }

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(181,255,46,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(181,255,46,0.03) 0%, transparent 60%);
}

/* Waveform decoration */
.hero-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 40px;
  opacity: 0.08;
}
.hero-waveform span {
  display: block;
  width: 4px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
  animation: waveAnim 1.8s ease-in-out infinite;
}
.hero-waveform span:nth-child(odd) { animation-delay: 0.2s; }
.hero-waveform span:nth-child(3n) { animation-delay: 0.5s; }
.hero-waveform span:nth-child(4n) { animation-delay: 0.8s; }

@keyframes waveAnim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}

/* Hero logo stamp (large) */
.hero-stamp {
  display: inline-block;
  border: 4px solid var(--green);
  border-radius: 8px;
  padding: 0 0 20px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  min-width: 480px;
  background: rgba(8,8,8,0.8);
}
.hero-stamp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(181,255,46,0.05) 1px, transparent 1px);
  background-size: 8px 8px;
}
/* Corner notches */
.hero-stamp::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(181,255,46,0.15);
  border-radius: 4px;
  pointer-events: none;
}

.hero-stamp-banner {
  background: var(--green);
  padding: 10px 24px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-stamp-banner span {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--black);
  text-transform: uppercase;
}

.hero-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.hero-dub, .hero-bud {
  font-family: var(--font);
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.hero-diamond {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-diamond span {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: var(--black);
  margin-top: 3px;
}

.hero-underlines {
  display: flex;
  gap: 20px;
  padding: 8px 30px 0;
  position: relative;
  z-index: 1;
}
.hero-underline { flex: 1; height: 3px; background: var(--green); border-radius: 2px; opacity: 0.8; }
.hero-underline-gap { width: clamp(60px, 8vw, 80px); flex-shrink: 0; }

.hero-genres {
  display: flex;
  justify-content: space-between;
  padding: 12px 30px 0;
  position: relative;
  z-index: 1;
}
.hero-genres span {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--green);
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-stamp-footer {
  padding: 16px 30px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(181,255,46,0.1);
  margin-top: 16px;
}
.hero-stamp-footer span {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--grey-dark);
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--grey-light);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   NEXT EVENT TICKER
============================================================ */
.event-ticker {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--black);
  text-transform: uppercase;
  padding: 0 40px;
}
.ticker-track span::before {
  content: '◆';
  margin-right: 40px;
  opacity: 0.4;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   EVENTS SECTION
============================================================ */
.events-section {
  background: var(--black-mid);
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

/* Event card */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.event-card:hover {
  border-color: rgba(181,255,46,0.4);
  transform: translateY(-3px);
}

.event-card-header {
  background: var(--green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-card-date {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
}
.event-card-tag {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  opacity: 0.6;
  text-transform: uppercase;
}

.event-card-body { padding: 24px; }

.event-card-title {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}

.event-card-venue {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}

.event-card-desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--black-soft);
  border-top-color: rgba(255,255,255,0.06);
}

.event-card-lineup {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey-mid);
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(181,255,46,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
}
.about-text h2 em {
  color: var(--green);
  font-style: normal;
}
.about-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p strong {
  color: var(--white);
  font-weight: 700;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.1);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--transition);
}
.pillar:hover { border-color: rgba(181,255,46,0.4); }

.pillar-title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pillar-desc {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   VENUES SECTION
============================================================ */
.venues-section {
  background: var(--black-mid);
  padding: 80px 0;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.venue-card {
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.venue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--transition);
}
.venue-card:hover { border-color: rgba(181,255,46,0.3); }
.venue-card:hover::before { opacity: 1; }

.venue-name {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.venue-location {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.7;
}
.venue-desc {
  font-family: var(--font);
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(181,255,46,0.1);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 1px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green); opacity: 1; }

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.social-link {
  display: inline-block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  background: var(--green);
  padding: 8px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.social-link:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--grey-dark);
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   MOBILE NAV
============================================================ */
@media (max-width: 768px) {
  /* Tighten header padding */
  .site-header { padding: 0 16px; }

  .header-inner { height: 64px; gap: 12px; }

  /* Hide the Events CTA button — hamburger handles nav */
  .nav-cta { display: none; }

  /* Hide desktop nav, show as dropdown */
  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,0.99);
    flex-direction: column;
    padding: 28px 24px 36px;
    gap: 20px;
    border-bottom: 2px solid rgba(181,255,46,0.15);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 14px; letter-spacing: 3px; color: #888; }

  /* Add Events link to mobile menu via CSS content isn't possible,
     but the fallback menu includes it — handled in header.php */

  .nav-toggle { display: flex; }

  /* ── LOGO: mobile compact version ── */
  /* Hide the banner text on mobile to reduce height */
  .logo-banner { display: none; }

  /* Remove top padding compensation from banner */
  .logo-stamp {
    padding: 6px 12px 6px;
    border-width: 2px;
  }

  /* Tighter wordmark */
  .logo-wordmark { gap: 6px; }

  .logo-dub, .logo-bud {
    font-size: 22px;
    letter-spacing: -1px;
  }

  .logo-badge {
    width: 20px;
    height: 20px;
  }
  .logo-badge span { font-size: 10px; }

  /* ── HERO ── */
  .hero-stamp { min-width: unset; width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-dub, .hero-bud { font-size: 52px; }
  .hero-diamond { width: 50px; height: 50px; }
  .hero-diamond span { font-size: 22px; }

  /* Extra small — even more compact logo */
  .logo-dub, .logo-bud { font-size: 20px; }
  .logo-stamp { padding: 5px 10px; }
}

/* ============================================================
   ARTISTS PAGE MOBILE
============================================================ */
@media (max-width: 860px) {
  /* Force single column on artist blocks via inline style override */
  .dub-artist-block {
    display: block !important;
    padding: 44px 0 !important;
  }
  /* Identity column — row layout on mobile */
  .artist-identity-col {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
    flex-wrap: wrap !important;
  }
  /* Hide counter on mobile */
  .artist-counter { display: none !important; }

  /* Founder inner grid */
  .founder-inner-grid {
    display: block !important;
    padding: 24px 20px !important;
  }
  .founder-identity-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    flex-wrap: wrap !important;
  }
}

/* ============================================================
   WORDPRESS CORE CLASSES
============================================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }
/* ============================================================
   SEASON ONE — ADD THIS TO THE BOTTOM OF style.css
   Paste everything below this line at the end of your style.css
============================================================ */

/* Season accent colors */
:root {
  --season-red:      #e03030;
  --season-red-dim:  rgba(224,48,48,0.15);
  --season-gold:     #d4a017;
  --season-gold-dim: rgba(212,160,23,0.15);
  --season-blue:     #3a9ad9;
  --season-blue-dim: rgba(58,154,217,0.15);
}

/* ── Section Header ── */
.season-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.season-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid var(--grey-dark);
  border-radius: 3px;
  padding: 6px 14px;
}

/* ── Season Grid ── */
.season-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* ── Season Card Base ── */
.season-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.season-card:hover { transform: translateY(-3px); }

/* Card number badge */
.season-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  opacity: 0.5;
}

/* Card body */
.season-card-body {
  padding: 32px 28px 28px;
}

.season-card-label {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 14px;
}

.season-card-title {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.season-card-format {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.season-card-genres {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 24px;
}

.season-card-details {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-bottom: 24px;
}

.season-card-venue {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.season-card-time {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.season-card-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.season-card-perks span {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 5px 10px;
  color: var(--grey-light);
}

.season-card-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-tier {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}
.price-tier em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-mid);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.price-divider {
  color: var(--grey-dark);
  font-size: 18px;
}

.season-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.season-card-actions .btn {
  font-size: 11px;
  padding: 11px 22px;
  letter-spacing: 3px;
}

/* ── Color Variants ── */

/* Red — 01·01 Active */
.season-card--red {
  border-top: 3px solid var(--season-red);
}
.season-card--red .season-card-number { color: var(--season-red); opacity: 1; }
.season-card--red .season-card-format { color: var(--season-red); }
.season-card--red .season-card-title { color: var(--white); }
.season-card--red.season-card--active {
  border-color: var(--season-red);
  background: linear-gradient(160deg, rgba(224,48,48,0.07) 0%, var(--black-soft) 60%);
}
.season-card--red .btn--primary {
  background: var(--season-red);
  border-color: var(--season-red);
  color: var(--white);
}
.season-card--red .btn--primary:hover {
  background: transparent;
  color: var(--season-red);
}
.season-card--red .btn--outline {
  border-color: var(--season-red);
  color: var(--season-red);
}
.season-card--red .btn--outline:hover {
  background: var(--season-red);
  color: var(--white);
  opacity: 1;
}

/* Gold — 01·02 Teaser */
.season-card--gold {
  border-top: 3px solid var(--season-gold);
}
.season-card--gold .season-card-number { color: var(--season-gold); opacity: 1; }
.season-card--gold .season-card-format { color: var(--season-gold); }
.season-card--gold .btn--outline {
  border-color: var(--season-gold);
  color: var(--season-gold);
}
.season-card--gold .btn--outline:hover {
  background: var(--season-gold);
  color: var(--black);
  opacity: 1;
}

/* Blue — 01·03 Teaser */
.season-card--blue {
  border-top: 3px solid var(--season-blue);
}
.season-card--blue .season-card-number { color: var(--season-blue); opacity: 1; }
.season-card--blue .season-card-format { color: var(--season-blue); }
.season-card--blue .btn--outline {
  border-color: var(--season-blue);
  color: var(--season-blue);
}
.season-card--blue .btn--outline:hover {
  background: var(--season-blue);
  color: var(--white);
  opacity: 1;
}

/* Teaser cards — slightly muted */
.season-card--teaser { opacity: 0.82; }
.season-card--teaser:hover { opacity: 1; }

/* ── EMAIL SIGNUP SECTION ── */
.signup-section {
  background: var(--black-mid);
  border-top: 1px solid rgba(181,255,46,0.08);
  border-bottom: 1px solid rgba(181,255,46,0.08);
  padding: 60px 0;
}

.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.signup-heading {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}

.signup-desc {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin: 0;
}

/* Fallback inline form */
.inline-signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.inline-signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.inline-signup-form input[type="email"]:focus {
  border-color: rgba(181,255,46,0.5);
}
.inline-signup-form input[type="email"]::placeholder {
  color: var(--grey-mid);
}

/* ── SEASON GRID RESPONSIVE ── */
@media (max-width: 960px) {
  .season-grid {
    grid-template-columns: 1fr;
  }
  .season-card--teaser .season-card-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .signup-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .season-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   EVENT PAGE STYLES — paste at bottom of style.css
============================================================ */

/* ── Event Hero ── */
.event-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--black);
}
.event-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(224,48,48,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(224,48,48,0.03) 0%, transparent 60%);
}
.event-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.event-season-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--season-red);
  border: 1px solid rgba(224,48,48,0.3);
  border-radius: 3px;
  padding: 6px 14px;
  margin-bottom: 32px;
}
.event-hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event-title-amp {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--season-red);
  letter-spacing: -1px;
  line-height: 1.2;
}
.event-hero-subtitle {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 48px;
}
.event-hero-details {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.event-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 0 0;
}
.event-detail-item:first-child { padding-left: 0; }
.event-detail-label {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--season-red);
}
.event-detail-value {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.event-detail-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 24px 0 0;
  flex-shrink: 0;
}
.event-hero-location {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 40px;
}
.event-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Red button variants */
.btn--red-primary {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--season-red);
  background: var(--season-red);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.btn--red-primary:hover {
  background: transparent;
  color: var(--season-red);
  opacity: 1;
}
.btn--red-outline {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--season-red);
  background: transparent;
  color: var(--season-red);
  cursor: pointer;
  transition: all var(--transition);
}
.btn--red-outline:hover {
  background: var(--season-red);
  color: var(--white);
  opacity: 1;
}

/* Red ticker variant */
.event-ticker--red .ticker-track span { color: var(--season-red); }

/* ── Event Sections ── */
.event-section { padding: 80px 0; }
.event-section--dark { background: var(--black-mid); }
.event-section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1;
}
.event-section-title em {
  color: var(--season-red);
  font-style: normal;
}

/* ── Two Col Layout ── */
.event-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.event-two-col--reverse { direction: rtl; }
.event-two-col--reverse > * { direction: ltr; }
.event-col-text p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.event-col-text p strong { color: var(--white); }

/* ── Stats ── */
.event-col-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-stat-card {
  background: var(--black-soft);
  border: 1px solid rgba(224,48,48,0.2);
  border-left: 3px solid var(--season-red);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-stat-number {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 900;
  color: var(--season-red);
  line-height: 1;
  min-width: 60px;
}
.event-stat-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
}

/* ── Lineup ── */
.lineup-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 1fr 80px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 32px;
}
.lineup-slot {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.lineup-slot-header {
  background: rgba(224,48,48,0.1);
  border-bottom: 1px solid rgba(224,48,48,0.2);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lineup-slot-type {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--season-red);
}
.lineup-slot-format {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.lineup-slot-artist {
  padding: 28px 16px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-slot-artist.tba {
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
  margin: 12px;
}
.tba-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.lineup-b2b-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-b2b-connector span {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--season-red);
  background: rgba(224,48,48,0.1);
  border: 1px solid rgba(224,48,48,0.2);
  border-radius: 3px;
  padding: 6px 10px;
}
.lineup-announcement-note {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-mid);
  text-align: center;
  text-transform: uppercase;
}
.lineup-announcement-note a { color: var(--season-red); }

/* ── Production Card ── */
.production-card {
  background: var(--black-soft);
  border: 1px solid rgba(224,48,48,0.15);
  border-radius: var(--radius);
  padding: 32px;
}
.production-card-title {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--season-red);
  margin-bottom: 24px;
}
.production-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.production-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.prod-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.production-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.production-list li strong {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.production-list li span {
  font-family: var(--font);
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 1px;
}
.production-credit {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  margin: 0;
}
.production-credit strong { color: var(--green); }

/* ── Perks ── */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.perk-card {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.perk-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.perk-title {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.perk-desc {
  font-family: var(--font);
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}
.sponsors-row {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sponsors-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 16px;
}
.sponsors-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sponsor-slot {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dark);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 8px 20px;
}
.sponsors-note {
  font-family: var(--font);
  font-size: 11px;
  color: var(--grey-mid);
  margin: 0;
}
.sponsors-note a { color: var(--green); }

/* ── Tickets Section ── */
.event-tickets-section {
  background: var(--black);
  border-top: 1px solid rgba(224,48,48,0.15);
}
.tickets-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tickets-text p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.tickets-disclaimer {
  font-size: 11px !important;
  color: var(--grey-dark) !important;
  letter-spacing: 0.5px;
}
.tickets-presented {
  font-size: 11px !important;
  color: var(--grey-mid) !important;
  letter-spacing: 1px;
}
.tickets-presented strong { color: var(--white); }
.tickets-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--black-soft);
  border: 1px solid rgba(224,48,48,0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.ticket-tier { flex: 1; }
.ticket-tier-price {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ticket-tier-name {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--season-red);
  margin: 4px 0;
}
.ticket-tier-detail {
  font-family: var(--font);
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 1px;
}
.ticket-tier-divider {
  font-size: 32px;
  color: var(--grey-dark);
  margin: 16px 0;
}

/* Tickets pricing row */
.tickets-pricing {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tickets-cta {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}
.tickets-via {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark);
  width: 100%;
  text-align: center;
  margin: 0;
}

/* ── Season Footer CTA ── */
.season-cta-section {
  background: var(--black-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 60px 0;
}
.season-cta-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.season-cta-text {
  font-family: var(--font);
  font-size: 16px;
  color: var(--grey-mid);
  margin-bottom: 24px;
}
.season-cta-text a { color: var(--green); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .event-two-col { grid-template-columns: 1fr; gap: 48px; }
  .event-two-col--reverse { direction: ltr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .lineup-b2b-connector { transform: rotate(90deg); }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .tickets-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .event-hero-details { flex-direction: column; gap: 16px; }
  .event-detail-divider { display: none; }
  .perks-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   FLYER HERO + SPONSORSHIP STYLES — paste at bottom of style.css
============================================================ */

/* ── Event Hero Two-Col with Flyer ── */
.event-hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.event-flyer-img {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(224,48,48,0.15), 0 8px 32px rgba(0,0,0,0.6);
  display: block;
}

@media (max-width: 960px) {
  .event-hero-content {
    grid-template-columns: 1fr;
  }
  .event-hero-flyer {
    display: flex;
    justify-content: center;
  }
  .event-flyer-img {
    max-width: 280px;
  }
}

/* ── Sponsorship Page ── */
.sponsor-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--black);
}
.sponsor-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(181,255,46,0.04) 0%, transparent 70%);
}
.sponsor-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 700px;
}
.sponsor-confidential-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.sponsor-hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.sponsor-hero-title em {
  color: var(--green);
  font-style: normal;
}
.sponsor-hero-desc {
  font-size: 17px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

/* ── Sponsor Sections ── */
.sponsor-section { padding: 80px 0; }
.sponsor-section--dark { background: var(--black-mid); }
.sponsor-section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1;
}

/* ── Two col ── */
.sponsor-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sponsor-col-text p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sponsor-col-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sponsor-stat {
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.sponsor-stat-number {
  display: block;
  font-family: var(--font);
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.sponsor-stat-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── Season Events Row ── */
.sponsor-season-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}
.sponsor-events-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sponsor-event-card {
  background: var(--black-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid;
}
.sponsor-event-card--red { border-color: var(--season-red); }
.sponsor-event-card--gold { border-color: var(--season-gold); }
.sponsor-event-card--blue { border-color: var(--season-blue); }
.sponsor-event-num {
  display: block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--grey-mid);
  margin-bottom: 10px;
}
.sponsor-event-card--red .sponsor-event-num { color: var(--season-red); }
.sponsor-event-card--gold .sponsor-event-num { color: var(--season-gold); }
.sponsor-event-card--blue .sponsor-event-num { color: var(--season-blue); }
.sponsor-event-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.sponsor-event-date {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sponsor-event-format {
  font-family: var(--font);
  font-size: 10px;
  color: var(--grey-mid);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.sponsor-event-status {
  display: inline-block;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 5px 10px;
}
.sponsor-event-status--active {
  color: var(--season-red);
  border-color: rgba(224,48,48,0.3);
}

/* ── Packages ── */
.sponsor-packages-intro {
  font-size: 16px;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.sponsor-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.sponsor-package {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.sponsor-package--featured {
  border-color: rgba(181,255,46,0.25);
  background: linear-gradient(160deg, rgba(181,255,46,0.04) 0%, var(--black-soft) 60%);
}
.sponsor-package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.sponsor-package-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sponsor-package-name {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.sponsor-package-tier {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.sponsor-package-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sponsor-package-list li {
  font-family: var(--font);
  font-size: 13px;
  color: var(--grey-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.sponsor-package-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.sponsor-package-cta { width: 100%; text-align: center; }

/* ── Reasons ── */
.sponsor-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sponsor-reason {
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.sponsor-reason-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.sponsor-reason h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sponsor-reason p {
  font-family: var(--font);
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── Contact ── */
.sponsor-contact-section {
  background: var(--black);
  border-top: 1px solid rgba(181,255,46,0.1);
}
.sponsor-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sponsor-contact-text p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sponsor-contact-card {
  background: var(--black-soft);
  border: 1px solid rgba(181,255,46,0.15);
  border-radius: var(--radius);
  padding: 40px;
}
.sponsor-contact-label {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}
.sponsor-contact-email {
  display: block;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
  word-break: break-all;
}
.sponsor-contact-ig {
  display: block;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.sponsor-contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 20px 0;
}
.sponsor-contact-note {
  font-family: var(--font);
  font-size: 11px;
  color: var(--grey-mid);
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sponsor-two-col,
  .sponsor-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .sponsor-events-row,
  .sponsor-packages-grid { grid-template-columns: 1fr; }
  .sponsor-reasons-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-col-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sponsor-reasons-grid,
  .sponsor-col-stats { grid-template-columns: 1fr; }
}
/* ============================================================
   NATIVE FLYER STYLES — paste at bottom of style.css
============================================================ */

.native-flyer {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.native-flyer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--season-red);
}

.nf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.nf-brand {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.nf-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--season-red);
}

.nf-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 3px;
}

.nf-dub, .nf-bud {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.nf-amp {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
}

.nf-season {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.nf-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.nf-title {
  font-family: var(--font);
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  line-height: 1;
}

.nf-title-amp {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  color: var(--season-red);
  line-height: 1.4;
}

.nf-format {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--season-red);
  margin-bottom: 6px;
}

.nf-genres {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 10px;
}

.nf-school {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 20px;
}

.nf-plus {
  color: var(--season-red);
  font-size: 12px;
}

.nf-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.nf-date {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.nf-venue {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 4px;
}

.nf-location {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}

.nf-perks {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--grey-mid);
  margin-bottom: 6px;
}

.nf-sound {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 16px;
}

.nf-pricing {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.nf-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.nf-price {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.nf-price--green {
  color: var(--green);
}

.nf-price-label {
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.nf-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dark);
}

/* Hero layout with flyer */
.event-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.event-hero-flyer {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .event-hero-content {
    grid-template-columns: 1fr;
  }
  .event-hero-flyer {
    justify-content: flex-start;
  }
  .native-flyer {
    max-width: 100%;
  }
}
/* ============================================================
   NATIVE FLYER STYLES — paste at bottom of style.css
============================================================ */

.native-flyer {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.native-flyer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--season-red);
}

.nf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.nf-brand {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.nf-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--season-red);
}

.nf-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 3px;
}

.nf-dub, .nf-bud {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.nf-amp {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  color: var(--green);
}

.nf-season {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.nf-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.nf-title {
  font-family: var(--font);
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--grey-mid);
  line-height: 1;
}

.nf-title-amp {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  color: var(--season-red);
  line-height: 1.4;
}

.nf-format {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--season-red);
  margin-bottom: 6px;
}

.nf-genres {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 10px;
}

.nf-school {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 20px;
}

.nf-plus {
  color: var(--season-red);
  font-size: 12px;
}

.nf-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.nf-date {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.nf-venue {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 4px;
}

.nf-location {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 8px;
}

.nf-perks {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--grey-mid);
  margin-bottom: 6px;
}

.nf-sound {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 16px;
}

.nf-pricing {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.nf-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.nf-price {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.nf-price--green {
  color: var(--green);
}

.nf-price-label {
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dark);
}

.nf-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 12px;
  font-family: var(--font);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-dark);
}

/* Hero layout with flyer */
.event-hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.event-hero-flyer {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .event-hero-content {
    grid-template-columns: 1fr;
  }
  .event-hero-flyer {
    justify-content: flex-start;
  }
  .native-flyer {
    max-width: 100%;
  }
}

/* ── Flyer Share Section ── */
.event-flyer-section {
  background: var(--black);
  border-top: 1px solid rgba(224,48,48,0.1);
}

.flyer-section-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.flyer-section-text p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.flyer-share-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.flyer-share-note {
  font-family: var(--font);
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-dark) !important;
  margin: 0 !important;
}

.flyer-section-poster {
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .flyer-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}