/* ============================================
   SAVAGE SIREN PRODUCTIONS
   Dark + Neon EDM Aesthetic
   ============================================ */

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

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--neon-pink);
  color: var(--white);
  border-radius: 0 0 6px 6px;
  font-size: .85rem;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-light: #1a1a26;
  --neon-pink: #ff2d7b;
  --neon-purple: #b44dff;
  --neon-blue: #4d9fff;
  --neon-cyan: #00e5ff;
  --neon-green: #39ff7f;
  --white: #f0eef5;
  --gray: #8a8899;
  --gray-dim: #838099;
  --font-display: 'Permanent Marker', cursive;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
  --glow-pink: 0 0 20px rgba(255, 45, 123, .3);
  --glow-purple: 0 0 20px rgba(180, 77, 255, .3);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; }

/* Subtle noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1500;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(10, 10, 15, .7) 0%, transparent 100%);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}

.nav.scrolled {
  background: rgba(10, 10, 15, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 45, 123, .15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo span { color: var(--neon-pink); }
.nav-logo-sub { font-size: 1em; color: var(--gray); letter-spacing: .08em; vertical-align: baseline; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray);
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  transition: width .3s;
  box-shadow: var(--glow-pink);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--neon-pink) !important;
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .74rem !important;
  transition: box-shadow .3s, transform .3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-1px);
}

.nav-cta.nav-cta-cyan { background: var(--neon-cyan) !important; color: #000 !important; }
.nav-cta.nav-cta-cyan:hover { box-shadow: 0 0 20px rgba(0, 229, 255, .35); }

.nav-cta.nav-cta-purple { background: var(--neon-purple) !important; }
.nav-cta.nav-cta-purple:hover { box-shadow: var(--glow-purple); }

/* Support icons render as inline SVGs; hide any legacy <img> versions only. */
img.support-icon-img,
.support-icon img {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(180, 77, 255, .15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 45, 123, .12) 0%, transparent 60%),
    linear-gradient(to top, var(--bg) 0%, rgba(10, 10, 15, .6) 20%, rgba(10, 10, 15, .2) 50%, rgba(10, 10, 15, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: .95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-tagline .line-1 {
  color: var(--neon-cyan);
  opacity: 0;
  transform: translateY(30px);
  animation: taglineFade .6s ease-out .3s forwards;
  text-shadow: 0 0 40px rgba(0, 229, 255, .3);
}

.hero-tagline .line-2 {
  color: var(--neon-pink);
  opacity: 0;
  transform: translateY(30px);
  animation: taglineFade .6s ease-out .6s forwards;
  text-shadow: 0 0 40px rgba(255, 45, 123, .3);
}

.hero-tagline .line-3 {
  color: var(--neon-purple);
  opacity: 0;
  transform: translateY(30px);
  animation: taglineFade .6s ease-out .9s forwards;
  text-shadow: 0 0 40px rgba(180, 77, 255, .3);
}

@keyframes taglineFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .6s ease-out 1.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s ease-out 1.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .3s, box-shadow .3s;
  border: none;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--neon-pink);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: var(--glow-pink);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-outline:hover {
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
}

/* ============================================
   PAGE HERO - Shorter hero for inner pages
   ============================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}

.page-hero .hero-bg::after {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(180, 77, 255, .1) 0%, transparent 60%),
    linear-gradient(to top, var(--bg) 0%, rgba(10, 10, 15, .5) 50%, rgba(10, 10, 15, .7) 100%);
}

.page-hero .hero-content {
  text-align: left;
  padding: 0 clamp(24px, 5vw, 80px) clamp(32px, 6vh, 64px);
  max-width: 100%;
}

.page-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-hero .hero-subtitle {
  color: var(--gray);
  font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(40px, 5vh, 64px) clamp(24px, 5vw, 80px);
}

.section-dark { background: var(--bg); }
.section-surface { background: var(--surface); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: .95rem;
}

/* ============================================
   ABOUT / BIO
   ============================================ */
.bio {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bio p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.bio-values {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.bio-value {
  text-align: center;
}

.bio-value-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.bio-value-label {
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bio-value:nth-child(1) .bio-value-label { color: var(--neon-cyan); }
.bio-value:nth-child(2) .bio-value-label { color: var(--neon-pink); }
.bio-value:nth-child(3) .bio-value-label { color: var(--neon-purple); }

/* ============================================
   EVENTS
   ============================================ */
.event-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.event-filter {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

.event-filter:hover {
  border-color: var(--neon-purple);
  color: var(--white);
}

.event-filter.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 77, 255, .2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.event-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.event-card-date {
  font-size: .8rem;
  font-weight: 600;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.event-card-location {
  color: var(--gray);
  font-size: .85rem;
  margin-bottom: 12px;
}

.event-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-tag {
  font-size: .7rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(180, 77, 255, .12);
  color: var(--neon-purple);
  font-weight: 500;
}

/* Past events - more compact */
.events-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: padding-left .3s;
}

.event-list-item:hover {
  padding-left: 12px;
}

.event-list-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.event-list-date {
  color: var(--neon-pink);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 24px;
}

/* ============================================
   FORMS
   ============================================ */
.form-container {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: var(--white);
  font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 2px solid var(--neon-purple);
  outline-offset: 2px;
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 3px rgba(180, 77, 255, .25);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238a8899' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--surface);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--neon-pink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-1px);
}

.form-note {
  font-size: .8rem;
  color: var(--gray-dim);
  margin-top: 12px;
  text-align: center;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, rgba(255, 45, 123, .08), rgba(180, 77, 255, .08));
  border-top: 1px solid rgba(255, 45, 123, .1);
  border-bottom: 1px solid rgba(180, 77, 255, .1);
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
}

.cta-band-btn {
  display: inline-flex;
  padding: 12px 28px;
  background: var(--neon-pink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  transition: box-shadow .3s, transform .3s;
  white-space: nowrap;
}

.cta-band-btn:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-1px);
}

/* ============================================
   INSTAGRAM EMBED
   ============================================ */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-pink);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color .3s;
}

.ig-link:hover { color: var(--neon-purple); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: var(--bg);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-brand span { color: var(--neon-pink); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .85rem;
  color: var(--gray);
  transition: color .3s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .75rem;
  color: var(--gray-dim);
  margin-top: 8px;
}

/* ============================================
   EVENT MODAL
   ============================================ */
#event-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

#event-modal.open { opacity: 1; pointer-events: auto; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
  padding: 32px;
  transform: translateY(20px);
  transition: transform .3s;
}

#event-modal.open .modal-content { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color .3s;
  line-height: 1;
}

.modal-close:hover { color: var(--white); }

.modal-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-date {
  color: var(--neon-pink);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 4px;
}

.modal-location {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 4px;
}

.modal-time {
  color: var(--gray-dim);
  font-size: .85rem;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 12px;
  white-space: pre-line;
}

.modal-artists {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ---- Past Event Modal ---- */
.past-event-modal { max-width: 560px; }

.modal-artists-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.modal-artists-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 16px;
  letter-spacing: .04em;
}

.modal-artist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-artist-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  transition: border-color .3s, background .3s;
}

.modal-artist-card:hover {
  border-color: rgba(180, 77, 255, .25);
  background: rgba(180, 77, 255, .04);
}

.modal-artist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.modal-artist-info {
  flex: 1;
  min-width: 0;
}

.modal-artist-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
}

.modal-artist-role {
  font-size: .75rem;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.modal-artist-links {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.modal-artist-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255, 45, 123, .15), rgba(180, 77, 255, .15));
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 123, .2);
  transition: all .3s;
  white-space: nowrap;
}

.modal-artist-cta:hover {
  background: var(--neon-pink);
  color: var(--white);
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-1px);
}

.modal-artist-cta-sc {
  color: var(--neon-cyan);
  border-color: rgba(0, 229, 255, .2);
  background: linear-gradient(135deg, rgba(0, 229, 255, .1), rgba(77, 159, 255, .1));
}

.modal-artist-cta-sc:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, .3);
}

.modal-artist-cta-spotify {
  color: var(--neon-green);
  border-color: rgba(57, 255, 127, .2);
  background: linear-gradient(135deg, rgba(57, 255, 127, .1), rgba(57, 255, 127, .05));
}

.modal-artist-cta-spotify:hover {
  background: var(--neon-green);
  color: var(--bg);
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 127, .3);
}

/* Crew section avatar color */
.modal-crew-section .modal-artist-avatar {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
}

/* ---- Support the Scene Section ---- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 77, 255, .2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.support-icon { margin-bottom: 16px; }

.support-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-text {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.support-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--neon-pink);
  transition: color .3s;
}

.support-link:hover { color: var(--neon-purple); }

/* ---- Artist CTA Banner (events page) ---- */
.artist-cta-band {
  padding: 24px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, rgba(180, 77, 255, .06), rgba(0, 229, 255, .06));
  border-top: 1px solid rgba(180, 77, 255, .1);
  border-bottom: 1px solid rgba(0, 229, 255, .1);
}

.artist-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.artist-cta-icon {
  flex-shrink: 0;
  color: var(--neon-pink);
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .8; }
}

.artist-cta-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.artist-cta-sub {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ---- Modal CTA upgrade ---- */
.modal-cta-text {
  font-size: .85rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}

.modal-cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-follow-btn {
  font-size: .8rem;
  padding: 10px 20px;
}

@media (max-width: 600px) {
  .artist-cta-content { flex-direction: column; text-align: center; }
  .modal-cta-buttons { flex-direction: column; }
  .modal-cta-buttons .btn { width: 100%; justify-content: center; }
}

.modal-past-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

/* Event cards hover hint */
.events-grid .event-card,
.events-grid-home .event-card { cursor: pointer; position: relative; }
.events-grid .event-card::after,
.events-grid-home .event-card::after {
  content: 'Tap to View';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--neon-purple);
  opacity: .5;
  transition: opacity .3s;
}
@media (hover: hover) {
  .events-grid .event-card::after,
  .events-grid-home .event-card::after { content: 'View Event'; opacity: 0; }
  .events-grid .event-card:hover::after,
  .events-grid-home .event-card:hover::after { opacity: 1; }
}

@media (max-width: 480px) {
  .modal-artist-card {
    flex-wrap: wrap;
    gap: 8px;
  }
  .modal-artist-links {
    width: 100%;
    padding-left: 52px;
  }
  .modal-artist-cta {
    font-size: .7rem;
    padding: 5px 10px;
  }
}

/* ============================================
   CALENDAR
   ============================================ */
.calendar-wrap { max-width: 900px; margin: 0 auto 64px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-month { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; }
.cal-nav { background: var(--surface-light); border: 1px solid rgba(255,255,255,.1); color: var(--white); padding: 8px 16px; border-radius: 6px; cursor: pointer; font-size: 1.1rem; transition: border-color .3s; }
.cal-nav:hover { border-color: var(--neon-pink); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-label { text-align: center; font-size: .75rem; font-weight: 600; color: var(--gray-dim); text-transform: uppercase; padding: 8px 0; letter-spacing: .06em; }
.cal-cell { background: var(--surface); border-radius: 6px; min-height: 80px; padding: 6px; position: relative; }
.cal-cell.empty { background: transparent; }
.cal-date { font-size: .8rem; color: var(--gray); font-weight: 500; }
.cal-cell.today .cal-date { color: var(--neon-cyan); font-weight: 700; }
.cal-cell.has-event { border: 1px solid rgba(255, 45, 123, .2); }
.cal-event { font-size: .65rem; padding: 2px 6px; border-radius: 4px; margin-top: 4px; color: var(--white); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right .4s cubic-bezier(.77, 0, .175, 1);
    border-left: 1px solid rgba(255, 45, 123, .1);
  }

  .nav-links.open { right: 0; }
  .nav-links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
  }
  .nav-hamburger { display: flex; }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

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

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

/* ============================================
   PRINT
   ============================================ */
@media print {
  body { background: #fff; color: #111; }
  body::after { display: none; }
  .nav, .nav-hamburger, .skip-link, .cta-band, .hero-bg, .hero-buttons,
  .support-scene, .artist-cta-band, .modal-past-cta, .event-filters,
  #event-modal, .footer { display: none !important; }
  .hero, .page-hero { min-height: auto; padding: 24px; background: none; }
  .hero-content, .page-hero .hero-content { padding: 0; }
  .hero-tagline span, .page-hero .hero-title { color: #111 !important; opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-sub { color: #333; opacity: 1 !important; animation: none !important; }
  .section { padding: 16px 0; }
  .section-title { color: #111; }
  .event-card { border: 1px solid #ccc; break-inside: avoid; }
  .event-card-title { color: #111; }
  .event-card-date, .event-card-location { color: #333; }
  .event-tag { border: 1px solid #999; color: #333; background: #eee; }
  .bio p, .section-sub, .form-note { color: #333; }
  a { color: #111; text-decoration: underline; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  body::after { display: none; } /* noise texture causes GPU compositing overhead */
}

/* Disable noise texture on mobile — SVG filter + fixed position = jank on scroll */
@media (max-width: 768px) {
  body::after { display: none; }
  /* On mobile the fixed 72px nav overlaps hero content when the copy is long
     (the flex-end hero has no top padding). Size the hero to its content and
     reserve space below the nav so the title never slides underneath it. */
  .page-hero {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    padding: 96px clamp(24px, 5vw, 40px) 32px;
  }
  .page-hero .hero-content {
    padding: 0;
  }
}

/* ============================================
   FOCUS VISIBLE (keyboard nav)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .cal-cell { min-height: 50px; padding: 4px; }
  .cal-event { display: none; }
  .cal-cell.has-event::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--neon-pink); }

  .hero-tagline {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .page-hero .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .bio-values {
    flex-direction: column;
    align-items: center;
  }

  .event-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .event-list-date {
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-grid {
  columns: 4 280px;
  column-gap: 10px;
}
.gallery-grid-home {
  columns: 3 280px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .3s, filter .3s;
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in .2s ease-out;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 9001;
  padding: 12px;
  line-height: 1;
  opacity: .7;
  transition: opacity .15s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 12px; right: 16px; font-size: 2rem; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .gallery-grid { columns: 2 140px; column-gap: 6px; }
  .gallery-grid-home { columns: 2 140px; }
  .gallery-item { margin-bottom: 6px; border-radius: 6px; }
  .lightbox-prev { left: 4px; font-size: 2rem; }
  .lightbox-next { right: 4px; font-size: 2rem; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
