
/* Full original CSS from index.html (preserved exactly) */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --card: #161616;
  --red: #b02a33;
  --red-bright: #cf3d48;
  --grey: #a7a29b;
  --grey-light: #d2ccc3;
  --white: #f0ede8;
  --border: rgba(255,255,255,0.07);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  cursor: auto;
  overflow-x: clip;
}
body.nav-open {
  overflow: hidden;
}

/* CUSTOM CURSOR */
.cursor {
  display: none;
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
a, button, [role="button"], .single-card, .btn-ticket, .btn-whatsapp, .hero-cta {
  cursor: pointer;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  border-bottom: none;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: auto;
  height: 46px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-self: end;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #beb8ae;
  text-decoration: none;
  transition: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--red);
  opacity: 0;
  transition: none;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { opacity: 1; }
.nav-toggle {
  display: none;
  justify-self: end;
  background: none;
  border: none;
  color: var(--white);
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 40px;
  height: 40px;
  transition: none;
}
.nav-toggle:hover {
  color: var(--red);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.56);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1180;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(84vw, 320px);
  background: rgba(12,12,12,0.98);
  border-left: 1px solid var(--border);
  box-shadow: -18px 0 60px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1190;
  display: flex;
  flex-direction: column;
  padding: 88px 24px 0;
  padding-bottom: max(28px, env(safe-area-inset-bottom, 28px));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}
.nav-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: none;
}
.nav-drawer-close:hover {
  color: var(--white);
}
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav-drawer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
}
.nav-drawer-links a:hover {
  color: var(--white);
}
.nav-drawer-social {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.nav-drawer-social a {
  color: #b7b1a8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-drawer-social a:hover { color: var(--red); }
.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-open .nav-drawer {
  transform: translateX(0);
}

/* ── HERO ── */
#home {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.36) 58%, rgba(0,0,0,0.72) 100%),
    linear-gradient(to right, rgba(5,5,5,0.72) 0%, rgba(5,5,5,0.16) 22%, rgba(5,5,5,0.16) 78%, rgba(5,5,5,0.72) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.62) 0%, rgba(5,5,5,0.34) 30%, rgba(5,5,5,0.72) 100%),
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(176,42,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(176,42,51,0.05) 0%, transparent 50%);
  z-index: 1;
}
.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: max-content;
  height: 100%;
  animation: heroSlide 46s linear infinite;
  will-change: transform;        /* ← tambah */
  backface-visibility: hidden;   /* ← tambah */
}
.hero-slide {
  width: 100vw;
  height: 100%;
  flex: 0 0 100vw;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.hero-grid {
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(34px);
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  width: min(68vw, 560px);
  height: clamp(96px, 16vw, 190px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .hero-logo-source,
.hero-title .hero-logo-display {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.52));
}
.hero-title .hero-logo-source {
  opacity: 0;
  visibility: hidden;
}
.hero-title .hero-logo-display {
  display: none;
}
.hero-title.is-chroma-ready .hero-logo-source {
  opacity: 0;
  visibility: hidden;
}
.hero-title.is-chroma-ready .hero-logo-display {
  display: block;
}
.hero-title .trippin-flicker {
  animation: logoFlicker 11.5s ease-in-out infinite;
  transform-origin: center;
  will-change: opacity, filter, transform;
}
.hero-tagline {
  font-size: 0.9rem;
  color: #ded7cd;
  letter-spacing: 0.05em;
  margin-top: 18px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 0.8s 0.78s forwards;
}
.hero-cta-wrap {
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  min-width: 0;
  border-radius: 999px;
  background: rgba(8,8,8,0.56);
  color: #f1ece4;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  transition: none;
}
.hero-cta svg {
  color: var(--red);
  opacity: 0.95;
  transition: none;
}
.hero-cta:hover {
  background: rgba(16,16,16,0.82);
  color: var(--white);
  border-color: rgba(176,42,51,0.72);
}
.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c2bcb2;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── SECTION COMMON ── */
section { position: relative; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6.1vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
.hero-eyebrow,
.section-label,
.release-info .release-type,
.featured-release::before,
.merch-type,
.stat-num {
  font-weight: 700;
}

/* ── MUSIC / RELEASES ── */
#music {
  padding: 120px 48px;
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.music-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.see-all {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: var(--red); border-color: var(--red); }

/* FEATURED RELEASE */
.featured-release {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.featured-release::before {
  content: 'NEW';
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 10px;
}
.featured-release::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
.release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.release-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s, transform 0.4s;
}
.release-cover:hover img { filter: grayscale(0%); transform: scale(1.04); }
.release-cover .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.release-cover:hover .play-btn { background: rgba(0,0,0,0.28); }
.play-icon {
  width: 56px; height: 56px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.release-cover:hover .play-icon { opacity: 1; transform: scale(1); }
.play-icon::after {
  content: '';
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.release-info .release-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.release-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}
.release-info .release-year {
  color: #c6c0b6;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.tracklist { list-style: none; margin-bottom: 32px; }
.tracklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: color 0.2s;
}
.tracklist li:hover { color: var(--white); }
.track-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  color: var(--grey);
  width: 20px;
}
.track-dur {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
}
.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(29,185,84,0.4);
  color: #1db954;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: none;
}
.btn-spotify:hover { background: rgba(29,185,84,0.1); border-color: #1db954; }
.spotify-icon { font-size: 1.2rem; }

/* SINGLES GRID */
.singles-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  gap: 2px;
}
.single-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
}
.single-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.7);
  transition: filter 0.4s, transform 0.5s;
}
.single-card:hover img { filter: grayscale(0%) brightness(0.9); transform: scale(1.06); }
.single-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.single-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.single-year {
  font-size: 0.82rem;
  color: #d0c9bf;
}
.single-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d8d2c9;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3px 8px;
}
.single-section {
  margin-top: 64px;
}
.single-section .section-title {
  margin-bottom: 12px;
}
.single-section p.section-copy {
  color: #d4cdc3;
  font-size: 0.9rem;
  margin-bottom: 28px;
  max-width: 520px;
}
.single-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: fit-content;
}

/* ── TOUR ── */
#tour {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.tour-header { margin-bottom: 56px; }
.tour-list { display: flex; flex-direction: column; gap: 0; }
.tour-item {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.tour-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0; bottom: 0;
  background: rgba(176,42,51,0.04);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.tour-item:hover::before { opacity: 1; }
.tour-item > * {
  position: relative;
  z-index: 1;
}
.tour-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.tour-date span {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}
.tour-venue h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tour-venue p {
  font-size: 0.8rem;
  color: #c9c3ba;
  margin-top: 4px;
}
.tour-date.is-struck,
.tour-date.is-struck span,
.tour-venue.is-struck h4,
.tour-venue.is-struck p {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.55;
}
.tour-city {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.btn-ticket {
display: inline-block;
padding: 10px 24px;
border: 1px solid #ffffff;   /* putih */
background: #ffffff;         /* isi putih */
color: #000000;              /* teks hitam */
font-family: 'Barlow Condensed', sans-serif;
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
transition: none;
white-space: nowrap;
position: relative;
z-index: 2;
}
.btn-ticket:hover {
background: var(--red);      /* biar ada feedback */
border-color: var(--red);
color: #ffffff;
}
.btn-ticket.sold-out {
opacity: 0.4;
cursor: not-allowed;
border-color: transparent;
background: none;
color: var(--grey);
pointer-events: none; /* ← ini kunci */
}

.btn-ticket.sold-out:hover {
background: none;
border-color: transparent;
color: var(--grey);
}

/* ── ABOUT ── */
#about {
  padding: 120px 48px;
  background: var(--deep);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1010, #0d0d0d);
  border: 1px solid var(--border);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: contrast(1.02) saturate(0.92);
}
.about-img-placeholder .big-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12rem;
  color: rgba(176,42,51,0.16);
  letter-spacing: -0.05em;
  user-select: none;
}
.about-frame {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px solid rgba(176,42,51,0.45);
  box-shadow: 0 0 0 1px rgba(176,42,51,0.12);
  opacity: 0.62;
  pointer-events: none;
}
.about-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.about-text .section-title { margin-bottom: 6px; }
.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d7d1c8;
  margin-bottom: 0;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* ── MERCH ── */
#list {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--black), #120808);
}
#list .section-title { margin-bottom: 16px; }
#list p { color: #d2cbc1; font-size: 0.9rem; margin-bottom: 36px; max-width: 560px; }
.merch-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px);
  gap: 24px;
}
.merch-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.merch-gallery {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.merch-track {
  display: flex;
  transition: transform 0.35s ease;
}
.merch-slide {
  min-width: 100%;
}
.merch-photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.merch-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,10,10,0.55);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
}
.merch-nav.prev { left: 12px; }
.merch-nav.next { right: 12px; }
.merch-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.merch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.merch-dot.active {
  background: var(--white);
}
.merch-body {
  padding: 24px;
}
.merch-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.merch-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.merch-body p {
  max-width: none;
  margin-bottom: 18px !important;
}
.merch-price {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #25d366;
  color: #25d366;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}
.btn-whatsapp:hover:not(:disabled) {
  background: #25d366;
  color: var(--black);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:disabled,
.btn-sold-out {
  border-color: #666;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-whatsapp:disabled:hover,
.btn-sold-out:hover {
  background: transparent;
  box-shadow: none;
}
/* SOLD OUT OVERLAY */
.merch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 3;
}
.merch-overlay.active {
  opacity: 1;
  visibility: visible;
}
.merch-overlay span {
  font-family: 'Bebas Neue','Barlow Condensed', sans-serif;
  font-size: 3rem;
  color: var(--red);
  border: 4px solid var(--red);
  padding: 10px 24px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.4);
  filter: drop-shadow(0 4px 12px rgba(208, 42, 51, 0.3));

  animation: stampPulse 0.5s ease-out forwards;
}
@keyframes stampPulse {
  from {
    transform: scale(0.8) rotate(-5deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(-15deg);
    opacity: 1;
  }
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #0a0a0a;
}

/* ── FOOTER ── */
footer {
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: rgba(240,237,232,0.35);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.btn-footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: default;
  transition: color 0.3s ease;
}

.contact-options {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  z-index: 10;
}
.footer-contact:hover .contact-options {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.contact-options a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #d6d0c7;
  text-decoration: none;
  padding: 6px 14px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
  box-shadow: inset 0 0 0 0 var(--red);
  transition: box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-options a:hover {
  box-shadow: inset 0 0 0 1px var(--red);
  background: rgba(209, 37, 37, 0.08);
}
.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #c8c1b7;
  transition: none;
}
.footer-social a:hover {
  color: var(--red);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-copy {
  font-size: 0.75rem;
  color: #a8a29a;
  letter-spacing: 0.08em;
  text-align: center;
}
.footer-credit {
  font-size: 0.7rem;
  color: #7e786f;
  letter-spacing: 0.08em;
  text-align: center;
}
.footer-credit a {
  color: #a8a29a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover {
  color: var(--red);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes heroSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-500vw); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes logoFlicker {
  0%, 18%, 22%, 48%, 52%, 78%, 82%, 100% {
    opacity: 1;
    transform: translateX(0);
    filter: brightness(1) contrast(1) saturate(1) drop-shadow(0 12px 28px rgba(0,0,0,0.52));
  }
  19.2%, 20.8% {
    opacity: 0.8;
    transform: translateX(-1px);
    filter: brightness(1.18) contrast(1.16) saturate(1.08) drop-shadow(0 8px 18px rgba(176,42,51,0.28));
  }
  49.1%, 50.9% {
    opacity: 0.78;
    transform: translateX(1px);
    filter: brightness(1.2) contrast(1.18) saturate(1.1) drop-shadow(0 7px 16px rgba(176,42,51,0.3));
  }
  79.2%, 81.4% {
    opacity: 0.72;
    transform: translateX(-1.2px);
    filter: brightness(1.24) contrast(1.2) saturate(1.12) drop-shadow(0 6px 14px rgba(176,42,51,0.32));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  #home .hero-content { padding: 0 24px 60px; }
  #music, #tour, #about, #list, footer { padding-left: 24px; padding-right: 24px; }
  .music-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
  .featured-release {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .featured-release::before { top: 14px; right: 14px; }
  .release-info h3 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .tracklist li { font-size: 0.85rem; gap: 12px; }
  .single-card-link { width: 100%; }
  .singles-grid { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 4/3; max-width: 560px; }
  .about-text { max-width: 100%; }
  .tour-item {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .btn-ticket {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 6px;
  }
  .tour-city { display: none; }
  .merch-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-social { flex-wrap: wrap; justify-content: center; }
  .footer-logo, .footer-copy, .footer-social { justify-self: center; }
}

@media (max-width: 640px) {
  nav {
    height: 64px;
    padding: 0 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }
  .nav-logo {
    max-width: 110px;
    min-width: 0;
  }
  .nav-logo img {
    width: 100%;
    max-width: 110px;
    height: auto;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }

  #home {
    height: 100svh;
    min-height: 480px;
    align-items: center;
    background: #000;
  }
  #home .hero-bg {
    background: #000;
    left: -1px;
    right: -1px;
    width: calc(100% + 2px);
  }
  #home .hero-slider {
    height: 100svh;
    align-items: stretch;
    will-change: transform;
    backface-visibility: hidden;
    width: calc(100% + 2px);
    left: -1px;
  }
  #home .hero-slide {
    height: 100%;
    max-height: 100svh;
  }
  #home .hero-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    background: #000;
  }
  #home .hero-content {
    padding: 0 20px 0;
    transform: none !important;
    margin-bottom: 0;
  }
  .hero-title {
    width: min(88vw, 360px);
    height: clamp(72px, 24vw, 130px);
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .hero-title .hero-logo-source,
  .hero-title .hero-logo-display {
    transform: scale(1.08);
  }
  #home .hero-bg::after,
  #home .hero-grid {
    left: -1px;
    right: -1px;
    width: calc(100% + 2px);
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
  .hero-tagline {
    font-size: 0.86rem;
    margin-top: 14px;
    max-width: 320px;
  }
  .hero-cta-wrap {
    margin-top: 22px;
  }
  .hero-cta {
    width: auto;
    min-width: 0;
    padding: 11px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    gap: 8px;
  }
  .hero-scroll { display: none; }

  #music, #tour, #about, #list, footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  #music { padding-top: 64px; padding-bottom: 88px; }
  #tour, #about { padding-top: 88px; padding-bottom: 88px; }
  #list { padding-top: 72px; padding-bottom: 72px; }

  .section-title { font-size: clamp(1.9rem, 10.8vw, 2.7rem); }
  .section-label {
    letter-spacing: 0.2em;
    font-size: 0.78rem;
  }

  .featured-release {
    padding: 20px;
    gap: 20px;
    margin-bottom: 38px;
  }
  .release-info .release-type {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }
  .release-info .release-year { margin-bottom: 18px; }
  .tracklist { margin-bottom: 24px; }
  .tracklist li {
    font-size: 0.84rem;
    padding: 8px 0;
    gap: 8px;
  }
  .track-dur { font-size: 0.74rem; }
  .btn-spotify {
    width: 100%;
    justify-content: center;
    letter-spacing: 0.12em;
    padding: 11px 16px;
  }

  .tour-date { font-size: 1.5rem; }
  .tour-date span {
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }
  .tour-venue h4 { font-size: 0.95rem; }
  .tour-venue p { font-size: 0.8rem; }
  .btn-ticket {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
  }

  #about {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .about-visual { aspect-ratio: 5/4; }
  .about-frame {
    bottom: 12px;
    right: 11.5px;
    width: calc(100% - 23.5px);
    height: calc(100% - 23px);
  }
  .about-text { gap: 10px; }
  .about-text p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .merch-body { padding: 18px; }
  .merch-card h3 { font-size: 1.6rem; }
  .btn-whatsapp {
    width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    padding: 11px 14px;
  }

  footer {
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 14px;
  }
  .footer-social {
    gap: 12px;
    row-gap: 8px;
  }
  .footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .trippin-flicker {
    animation: none;
  }
  .hero-bg,
  .hero-grid {
    transform: none !important;
  }
}
/* (rest of CSS unchanged) */
