*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

:root {
  --bg:       #060608;
  --bg2:      #0a0a0e;
  --card:     #0f0f14;
  --border:   #1c1c28;
  --red:      #ff2d55;
  --red-d:    #cc1f3f;
  --yellow:   #ffd700;
  --purple:   #8b5cf6;
  --text:     #f5f5f8;
  --text2:    #9090a8;
  --muted:    #505068;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-b:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--red) var(--bg); }
html::-webkit-scrollbar { width: 3px; }
html::-webkit-scrollbar-thumb { background: var(--red); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── BACK BANNER ── */
.back-banner {
  background: #0a0a0e;
  border-bottom: 1px solid #1c1c28;
  padding: 0.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.12em; color: #505068;
}
.back-banner a {
  color: #ff2d55; transition: opacity 0.2s;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.back-banner a:hover { opacity: 0.7; }

/* ── NAV ── */
nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 3rem; height: 60px;
  background: rgba(6,6,8,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled { border-color: var(--border); background: rgba(6,6,8,0.95); }

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.15em;
  color: var(--text);
}
.nav-brand span { color: var(--red); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--red); color: var(--text);
  padding: 0.4rem 1rem; font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-d); transform: translateY(-1px); }

/* hamburger */
.nav-ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-ham span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: 92px; left: 0; right: 0;
  background: rgba(6,6,8,0.98); border-bottom: 1px solid var(--border);
  padding: 2rem 3rem; flex-direction: column; gap: 1.5rem; z-index: 490;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-mobile.open { transform: none; opacity: 1; pointer-events: auto; }
.nav-mobile a { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); transition: color 0.2s; }
.nav-mobile a:hover { color: var(--red); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 92px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding-left: 3rem; padding-right: 3rem;
  padding-bottom: 4rem;
  position: relative; overflow: hidden;
}

/* animated gradient bg */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,45,85,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(139,92,246,0.08) 0%, transparent 60%);
  pointer-events: none; animation: heroBg 8s ease-in-out infinite alternate;
}
@keyframes heroBg {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.hero-content { position: relative; z-index: 2; }

.hero-genre {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}
.hero-genre::before { content: ''; width: 20px; height: 1px; background: var(--red); }

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9; letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}
.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(245,245,248,0.25);
  display: block;
}

.hero-tagline {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: var(--text2); max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}
.hero-tagline em { color: var(--text); font-style: normal; font-weight: 500; }

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.65s var(--ease) forwards;
}

.btn-artist-primary {
  background: var(--red); color: var(--text);
  padding: 0.85rem 2rem; font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-artist-primary:hover { background: var(--red-d); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,45,85,0.4); }

.btn-artist-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: 0.85rem 2rem; font-family: 'Space Mono', monospace;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-artist-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--red); line-height: 1; }
.hero-stat-label { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

/* ── VINYL ANIMATION ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeIn 1s 0.4s ease forwards;
}

.vinyl-wrap { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }

.vinyl-disc {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
  animation: vinylSpin 6s linear infinite;
}
@keyframes vinylSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.vinyl-svg { width: 100%; height: 100%; }

/* glow ring */
.vinyl-glow {
  position: absolute; inset: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,85,0.15) 30%, transparent 70%);
  animation: vinylGlow 3s ease-in-out infinite alternate;
}
@keyframes vinylGlow { from { opacity: 0.5; transform: scale(0.95); } to { opacity: 1; transform: scale(1.05); } }

/* floating music notes */
.music-note {
  position: absolute;
  font-family: 'Space Mono', monospace; font-size: 1.4rem;
  color: var(--red); opacity: 0;
  animation: noteFloat 4s ease-in-out infinite;
  pointer-events: none; user-select: none;
}
.note-1 { top: 10%; right: -10%; animation-delay: 0s; }
.note-2 { bottom: 20%; left: -8%; animation-delay: 1.2s; }
.note-3 { top: 40%; right: -14%; animation-delay: 2.4s; font-size: 1rem; }
@keyframes noteFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  30%  { opacity: 0.7; }
  70%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-40px) scale(1.1); }
}

/* now playing chip */
.now-playing {
  position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%);
  background: rgba(15,15,20,0.9);
  border: 1px solid rgba(255,45,85,0.3);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
  white-space: nowrap;
  animation: chipFloat 3s ease-in-out infinite;
}
@keyframes chipFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }
.playing-bars { display: flex; gap: 3px; align-items: flex-end; height: 16px; }
.playing-bar {
  width: 3px; background: var(--red); border-radius: 1px;
  animation: barAnim 0.8s ease-in-out infinite alternate;
}
.playing-bar:nth-child(1) { height: 6px; animation-duration: 0.6s; }
.playing-bar:nth-child(2) { height: 14px; animation-duration: 0.8s; }
.playing-bar:nth-child(3) { height: 10px; animation-duration: 0.5s; }
.playing-bar:nth-child(4) { height: 16px; animation-duration: 0.9s; }
.playing-bar:nth-child(5) { height: 8px; animation-duration: 0.7s; }
@keyframes barAnim { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }
.playing-text { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); }
.playing-title { font-weight: 700; color: var(--text); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--red); padding: 0.75rem 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.9); padding: 0 2rem;
}
.marquee-sep { color: rgba(255,255,255,0.4); padding: 0 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED ── */
.section { padding: 6rem 3rem; max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.section-full { padding: 6rem 3rem; position: relative; z-index: 1; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); }

.sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.sec-label::before { content: ''; width: 18px; height: 1px; background: var(--red); }

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.04em; line-height: 0.95;
  margin-bottom: 1.2rem;
}

/* ── ABOUT ── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text p { font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: var(--text2); margin-bottom: 1.2rem; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-text p .red { color: var(--red); }

.about-visual { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a0a12 0%, #120818 50%, #0a0a14 100%);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,45,85,0.1) 0%, transparent 60%);
}
.about-img-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; letter-spacing: 0.1em; color: var(--text); position: relative; z-index: 1;
}
.about-img-sub { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); position: relative; z-index: 1; }

/* quote card */
.about-quote {
  border-left: 3px solid var(--red);
  padding: 1.5rem 1.8rem;
  background: var(--card);
  margin-top: 2rem;
}
.about-quote blockquote {
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--text2); margin-bottom: 0.6rem;
}
.about-quote blockquote em { color: var(--red); font-style: normal; }
.about-quote cite { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── DISCOGRAPHY ── */
.disco-bg { background: var(--bg2); }
.disco-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.disco-card {
  background: var(--card); border: 1px solid var(--border);
  position: relative; overflow: hidden; cursor: default;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.disco-card:hover { border-color: rgba(255,45,85,0.4); transform: translateY(-6px); }
.disco-art {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.disco-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,6,8,0.85));
}
.disco-art-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}
.disco-info { padding: 1rem 1rem 1.2rem; }
.disco-type { font-family: 'Space Mono', monospace; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.disco-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--text); margin-bottom: 0.2rem; }
.disco-meta { font-size: 0.78rem; font-weight: 300; color: var(--muted); }

/* play overlay on hover */
.disco-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s; z-index: 5;
}
.disco-play svg { width: 18px; height: 18px; margin-left: 3px; }
.disco-card:hover .disco-play { opacity: 1; }

/* ── SHOWS ── */
.shows-list { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.show-row {
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.show-row:first-child { border-top: 1px solid var(--border); }
.show-row:hover { background: rgba(255,45,85,0.03); }
.show-date { text-align: center; }
.show-date-day { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--red); line-height: 1; }
.show-date-mon { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.show-name { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.show-venue { font-size: 0.85rem; font-weight: 300; color: var(--text2); }
.show-ticket {
  background: transparent; color: var(--red);
  border: 1px solid var(--red);
  padding: 0.45rem 1rem;
  font-family: 'Space Mono', monospace; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.show-ticket:hover { background: var(--red); color: var(--text); }
.show-ticket.sold { border-color: var(--muted); color: var(--muted); pointer-events: none; }

/* ── MERCH CTA ── */
.merch-cta {
  background: var(--red);
  padding: 5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.merch-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px);
}
.merch-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.06em; line-height: 0.9;
  color: var(--text); margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.merch-cta-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.btn-white {
  background: var(--text); color: #060608;
  padding: 0.9rem 2.5rem; font-family: 'Space Mono', monospace;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  position: relative; z-index: 1; display: inline-block;
}
.btn-white:hover { background: #d8d8e0; transform: translateY(-3px); }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-text p { font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: var(--text2); margin-bottom: 1rem; }
.contact-text p strong { color: var(--text); }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-link-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-link-row:hover { border-color: rgba(255,45,85,0.35); }
.contact-link-icon { width: 2rem; height: 2rem; background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link-icon svg { width: 14px; height: 14px; color: var(--red); }
.contact-link-label { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.contact-link-val { font-size: 0.88rem; font-weight: 400; color: var(--text); }
.contact-link-val a { color: var(--text); transition: color 0.2s; }
.contact-link-val a:hover { color: var(--red); }

.contact-social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
  padding: 0.5rem 1rem; color: var(--text2);
  font-family: 'Space Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.social-pill:hover { border-color: var(--red); color: var(--red); }
.social-pill svg { width: 12px; height: 12px; }

/* booking form */
.booking-form { background: var(--card); border: 1px solid var(--border); padding: 2rem; }
.form-title-art { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.form-sub { font-size: 0.85rem; font-weight: 300; color: var(--text2); line-height: 1.6; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; transition: color 0.2s; }
.form-group:focus-within .form-label { color: var(--red); }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 1rem;
  padding: 0.72rem 0.9rem; outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--red); background: rgba(255,45,85,0.03); box-shadow: 0 0 0 3px rgba(255,45,85,0.07); }
.form-select { cursor: pointer; }
.form-select option { background: var(--card); }
.form-textarea { height: 110px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 0.9rem; background: var(--red); color: var(--text); border: none;
  font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,45,85,0.35); }
.form-status { margin-top: 0.7rem; font-size: 0.75rem; font-family: 'Space Mono', monospace; min-height: 1.2em; }
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1;
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.12em; color: var(--text); }
.footer-brand span { color: var(--red); }
.footer-copy { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.06em; color: var(--muted); }
.footer-credit { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.footer-credit a { color: rgba(255,45,85,0.6); transition: color 0.2s; }
.footer-credit a:hover { color: var(--red); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-s { opacity: 0; transform: scale(0.94); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-b); }
.reveal-s.visible { opacity: 1; transform: none; }

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

/* ── RESPONSIVE ── */
@media(max-width:860px) {
  .hero { grid-template-columns: 1fr; padding: 5.5rem 2rem 3rem; text-align: center; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .vinyl-wrap { max-width: 280px; margin: 0 auto; }
  .hero-genre { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .show-row { grid-template-columns: 80px 1fr; gap: 1rem; }
  .show-ticket { display: none; }
}
@media(max-width:640px) {
  nav { padding: 0 1.2rem; top: 32px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-ham { display: flex; }
  .nav-mobile { display: flex; }
  .hero { padding: 5rem 1.2rem 3rem; }
  .hero-name { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero-btns a { text-align: center; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.8rem; }
  .section { padding: 4rem 1.2rem; }
  .section-full { padding: 4rem 1.2rem; }
  .disco-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .show-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.2rem 0; }
  .show-date { text-align: left; display: flex; gap: 0.5rem; align-items: baseline; }
  .show-date-day { font-size: 1.6rem; }
  .merch-cta { padding: 3.5rem 1.2rem; }
  .merch-cta-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.2rem; gap: 0.8rem; }
  .back-banner { padding: 0.4rem 1.2rem; }
  .now-playing { width: 90%; }
}
@media(max-width:380px) {
  .hero-name { font-size: 3.5rem; }
  .disco-grid { grid-template-columns: 1fr; }
}
