:root {
  --black: #070708;
  --charcoal: #101114;
  --panel: rgba(22, 23, 27, .74);
  --gray: #b7bac1;
  --muted: #777b84;
  --white: #f3f3f3;
  --red: #c10d20;
  --red-bright: #f02037;
  --line: rgba(255,255,255,.10);
  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(130,135,145,.12), transparent 26%),
    linear-gradient(180deg, #09090a 0%, #0d0e11 48%, #080809 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.ambient {
  pointer-events: none;
  position: fixed;
  width: 46vw;
  height: 46vw;
  min-width: 440px;
  min-height: 440px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
  opacity: .14;
  animation: drift 14s ease-in-out infinite alternate;
}
.ambient-one { background: #aeb4bf; top: 10%; left: -20%; }
.ambient-two { background: #4f545e; bottom: -20%; right: -20%; animation-delay: -6s; }
@keyframes drift { to { transform: translate3d(10vw, 8vh, 0) scale(1.1); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 13px 15px 13px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10,10,12,.72);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0,0,0,.3);
}

.brand {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.55rem;
  letter-spacing: .045em;
  line-height: 1;
}
.brand span { color: var(--red-bright); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: #c6c7cb;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 13px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease, font-weight .2s ease;
}
.nav a:hover { background: rgba(255,255,255,.08); color: white; transform: translateY(-1px); font-weight: 900; }
.menu-button { display: none; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 52px 0 70px;
}
.eyebrow {
  color: #9ea2aa;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 13px;
}
.hero-copy h1, .section-heading h2, .video-panel h2, .merch-card h2, .booking-card h2 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: .9;
  margin: 0;
  letter-spacing: .015em;
}
.hero-copy h1 { font-size: clamp(4.3rem, 11vw, 9.3rem); text-shadow: 0 15px 50px rgba(0,0,0,.55); }
.hero-copy h1 span, .merch-card h2 span { color: var(--red-bright); }
.hero-sub {
  margin: 22px 0 0;
  color: #c9cbd0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: .08em;
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px) scale(1.01); }
.primary { background: linear-gradient(135deg, var(--red-bright), #980718); box-shadow: 0 12px 32px rgba(225,15,42,.25); }
.primary:hover { box-shadow: 0 15px 42px rgba(225,15,42,.38); }
.ghost { border: 1px solid var(--line); background: rgba(255,255,255,.055); }
.ghost:hover { background: rgba(255,255,255,.1); }

.portrait-wrap { display: grid; place-items: center; }
.portrait-button {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #202228, #0b0b0e 65%);
  cursor: pointer;
  box-shadow: var(--shadow), 0 0 70px rgba(180,185,195,.07);
  isolation: isolate;
}
.portrait-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.72) 100%);
  z-index: 2;
}
.portrait-button img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.04) brightness(.84) saturate(.92); transition: opacity .4s ease, transform .7s ease, filter .3s ease; }
.portrait-button:hover img { transform: scale(1.025); filter: contrast(1.04) brightness(.92) saturate(.94); }
.portrait-fallback { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; gap: 8px; color: #b9bbc0; z-index: 1; }
.portrait-fallback strong { font-family: Anton, Impact, sans-serif; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: .04em; }
.portrait-fallback span { font-size: .8rem; color: #7d818a; }
.tap-label { position: absolute; left: 20px; bottom: 20px; z-index: 3; font-size: .7rem; font-weight: 900; letter-spacing: .14em; color: #ddd; }
.photo-indicator { display: flex; gap: 7px; margin-top: 15px; }
.dot { width: 18px; height: 3px; border-radius: 999px; background: #3d4047; transition: all .25s ease; }
.dot.active { width: 34px; background: var(--red-bright); }

.social-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -20px auto 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(15px);
}
.social-strip a { padding: 18px 10px; text-align: center; font-size: .76rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; border-right: 1px solid var(--line); transition: background .2s ease, color .2s ease, font-weight .2s ease; }
.social-strip a:last-child { border-right: 0; }
.social-strip a:hover { background: rgba(255,255,255,.08); color: white; font-weight: 900; }

.music-section { padding: 35px 0 110px; }
.section-heading h2 { font-size: clamp(4rem, 9vw, 7.2rem); }
.player-card {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(38,40,46,.78), rgba(12,12,14,.82));
  box-shadow: var(--shadow);
}
.track-art { aspect-ratio: 1; border-radius: 22px; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, #454951, #141519 50%, #070708 100%); border: 1px solid rgba(255,255,255,.08); }
.track-art span { font-family: Anton, Impact, sans-serif; font-size: 3.5rem; color: var(--red-bright); text-shadow: 0 0 30px rgba(255,0,40,.3); }
.track-info { align-self: center; min-width: 0; }
.track-kicker { margin: 0 0 5px; color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.track-info h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.player-controls { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-top: 23px; }
.play-button { width: 64px; height: 64px; border-radius: 50%; border: 0; background: var(--red-bright); color: white; font-size: .68rem; font-weight: 900; cursor: pointer; box-shadow: 0 8px 30px rgba(239,31,56,.28); }
.timeline-wrap { min-width: 0; }
.timeline { width: 100%; accent-color: var(--red-bright); cursor: pointer; }
.times { display: flex; justify-content: space-between; color: #7d8088; font-size: .7rem; margin-top: 3px; }
.asset-note { margin: 12px 0 0; color: #777b84; font-size: .74rem; }
.platform-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.platform { border: 1px solid var(--line); background: rgba(255,255,255,.035); border-radius: 14px; padding: 16px 12px; text-align: center; text-transform: uppercase; font-weight: 900; font-size: .72rem; letter-spacing: .07em; transition: transform .2s ease, background .2s ease; }
.platform:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }

.split-section { padding: 20px 0 110px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; }
.video-panel, .video-card, .merch-card, .booking-card { border: 1px solid var(--line); border-radius: 30px; background: rgba(18,19,23,.72); box-shadow: var(--shadow); }
.video-panel { padding: clamp(28px, 5vw, 58px); }
.video-panel h2 { font-size: clamp(3rem, 7vw, 6rem); }
.video-panel p:not(.eyebrow) { color: #9699a0; line-height: 1.7; max-width: 440px; margin: 22px 0 26px; }
.video-card { min-height: 420px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 35%, #41454d, #17181c 44%, #08080a 100%); }
.video-card::before { content: "EBK"; position: absolute; font-family: Anton, Impact, sans-serif; font-size: clamp(10rem, 26vw, 23rem); color: rgba(255,255,255,.025); transform: rotate(-9deg); }
.video-card span { position: absolute; left: 24px; bottom: 22px; font-size: .72rem; letter-spacing: .16em; font-weight: 900; color: #b8bac0; }
.play-orb { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 50px rgba(239,32,58,.28); transition: transform .25s ease; }
.video-card:hover .play-orb { transform: scale(1.1); }

.merch-section { padding: 0 0 110px; }
.merch-card { min-height: 470px; padding: clamp(32px, 7vw, 80px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: radial-gradient(circle at 78% 40%, rgba(130,135,145,.18), transparent 25%), linear-gradient(130deg, #111216, #070708); }
.merch-card::after { content: "COMING SOON"; position: absolute; right: -8%; bottom: -14%; font-family: Anton, Impact, sans-serif; font-size: clamp(6rem, 17vw, 15rem); white-space: nowrap; color: rgba(255,255,255,.025); transform: rotate(-6deg); }
.merch-card h2 { font-size: clamp(5rem, 13vw, 11rem); position: relative; z-index: 1; }
.merch-card p:last-child { color: #9699a0; font-size: 1rem; margin-top: 26px; position: relative; z-index: 1; }

.booking-section { padding: 0 0 100px; }
.booking-card { padding: clamp(34px, 7vw, 76px); background: linear-gradient(130deg, rgba(28,29,34,.88), rgba(10,10,12,.9)); }
.booking-card h2 { font-size: clamp(3.7rem, 9vw, 8rem); max-width: 900px; }
.booking-card > p:not(.eyebrow) { color: #9699a0; margin: 23px 0 30px; max-width: 660px; line-height: 1.7; }
.booking-email { display: inline-block; color: white; font-weight: 800; font-size: clamp(1rem, 3vw, 1.55rem); border-bottom: 2px solid var(--red-bright); padding-bottom: 5px; }

footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; border-top: 1px solid var(--line); padding: 32px 0 50px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #666a72; font-size: .76rem; }
.footer-brand { color: white; }

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

@media (max-width: 840px) {
  .site-header { border-radius: 16px; }
  .menu-button { display: block; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.05); color: white; padding: 8px 11px; font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
  .nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(10,10,12,.95); backdrop-filter: blur(20px); }
  .nav.open { display: flex; }
  .nav a { text-align: center; padding: 13px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .portrait-button { width: min(92%, 480px); }
  .social-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .social-strip a { border-bottom: 1px solid var(--line); }
  .social-strip a:nth-child(even) { border-right: 0; }
  .social-strip a:last-child { grid-column: 1/-1; border-bottom: 0; }
  .player-card { grid-template-columns: 1fr; }
  .track-art { max-width: 220px; width: 100%; }
  .platform-buttons { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .video-card { min-height: 340px; }
}

@media (max-width: 520px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .section, .social-strip, footer { width: calc(100% - 24px); }
  .hero { padding-top: 42px; }
  .hero-copy h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .portrait-button { width: 100%; border-radius: 25px; }
  .social-strip { grid-template-columns: 1fr; }
  .social-strip a, .social-strip a:nth-child(even) { border-right: 0; border-bottom: 1px solid var(--line); }
  .social-strip a:last-child { border-bottom: 0; }
  .player-card { padding: 15px; border-radius: 22px; }
  .player-controls { grid-template-columns: 1fr; }
  .play-button { width: 58px; height: 58px; }
  .merch-card, .video-panel, .video-card, .booking-card { border-radius: 23px; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
}
