:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-2: #0d0e0f;
  --surface: #151515;
  --surface-2: #1d1d1d;
  --text: #f6f0e8;
  --muted: #b7b0a8;
  --dim: #77716b;
  --line: rgba(246, 240, 232, 0.15);
  --red: #e4212c;
  --red-dark: #9d121a;
  --green: #58d15b;
  --cyan: #58d2ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 6px;
  --max-width: 1180px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(228, 33, 44, 0.08) 0 1px, transparent 1px 100%) 0 0 / 74px 74px,
    radial-gradient(circle at 50% -20%, rgba(246, 240, 232, 0.08), transparent 34rem),
    linear-gradient(180deg, #060606 0%, #0a0a0a 44%, #070707 100%);
  font-family: var(--body);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.1) 49%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: #050505;
  background: var(--text);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 2.45rem);
  line-height: 0.9;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.brand span {
  text-shadow: 3px 3px 0 rgba(228, 33, 44, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-width: 92px;
  padding: 0.72rem 1rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #f13039, var(--red));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(228, 33, 44, 0.24);
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
}

.section-shell {
  width: min(var(--max-width), calc(100% - clamp(2rem, 6vw, 5rem)));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  min-height: auto;
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 11% auto auto -8%;
  width: min(45vw, 520px);
  height: 54%;
  content: "";
  border-left: 2px solid rgba(228, 33, 44, 0.5);
  border-bottom: 2px solid rgba(88, 209, 91, 0.3);
  transform: skewX(-12deg);
  opacity: 0.8;
}

.hero-copy,
.hero-media {
  position: relative;
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-family: var(--display);
  font-size: clamp(5.8rem, 13vw, 11.4rem);
  font-weight: 900;
  line-height: 0.86;
  color: var(--text);
  text-transform: uppercase;
  text-shadow: 8px 8px 0 rgba(228, 33, 44, 0.72);
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.06em;
}

.hero-subtitle {
  margin: 1.15rem 0 0;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 5.2vw, 4.25rem);
  line-height: 0.92;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-line {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 760;
}

.artist-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  padding: 0;
  margin: 1.25rem 0 0;
  color: var(--muted);
  list-style: none;
}

.artist-meta li {
  position: relative;
  font-size: 0.95rem;
}

.artist-meta li + li::before {
  position: absolute;
  left: -0.7rem;
  color: var(--red);
  content: "/";
}

.hero-actions,
.watch-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.88rem 1.12rem;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #f13039, var(--red));
  box-shadow: 0 14px 28px rgba(228, 33, 44, 0.28);
}

.button-secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(246, 240, 232, 0.28);
}

.button-quiet {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(246, 240, 232, 0.18);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 232, 0.25);
  border-radius: var(--radius);
  background: #101010;
  box-shadow: var(--shadow);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.portrait-frame::before {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.portrait-frame::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
  object-position: 50% 34%;
  filter: contrast(1.06) saturate(0.94);
}

.frame-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.frame-caption span:last-child {
  color: var(--green);
}

.waveform {
  display: grid;
  grid-template-columns: repeat(52, 1fr);
  gap: 3px;
  align-items: center;
  height: 74px;
  margin-top: 1.2rem;
  padding: 0.5rem 0;
}

.waveform span {
  display: block;
  height: calc(var(--level) * 1px);
  min-height: 5px;
  background: linear-gradient(180deg, var(--text), rgba(246, 240, 232, 0.18));
  border-radius: 99px;
  animation: pulse 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * -60ms);
}

.waveform span:nth-child(7n) {
  background: var(--red);
}

.waveform span:nth-child(11n) {
  background: var(--green);
}

.music,
.bio,
.watch,
.connect,
.booking {
  padding-block: clamp(4rem, 8vw, 6.8rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.section-heading h2,
.bio-copy h2,
.booking h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading a,
.section-heading span {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 780;
}

.section-heading a {
  color: var(--red);
}

.release-list {
  display: grid;
  gap: 0.8rem;
}

.release-card {
  display: grid;
  grid-template-columns: 108px minmax(260px, 1fr) minmax(300px, 430px);
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: center;
  min-height: 176px;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(228, 33, 44, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.025);
}

.release-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.release-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.release-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 860;
}

.release-card a::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.release-rank {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 0.8rem;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.03);
}

.release-rank span {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.74;
  text-transform: uppercase;
  color: var(--red);
  text-shadow: 3px 3px 0 #050505;
}

.release-copy {
  min-width: 0;
}

.track-embed {
  overflow: hidden;
  border: 1px solid rgba(246, 240, 232, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
}

.track-embed iframe {
  display: block;
  width: 100%;
  height: 175px;
  border: 0;
}

.stream-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(1.5rem, 4vw, 2.4rem);
  min-height: 190px;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(88, 209, 91, 0.1), transparent 55%),
    linear-gradient(135deg, rgba(228, 33, 44, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.stream-panel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.stream-panel p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.stream-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: end;
}

.bio {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.bio-image,
.bio-note {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.bio-image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  object-position: 52% 34%;
  filter: grayscale(0.86) contrast(1.16);
}

.bio-note {
  display: grid;
  align-content: center;
  min-height: 310px;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(228, 33, 44, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.bio-note span {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-note strong {
  display: block;
  max-width: 9ch;
  margin-top: 0.7rem;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.bio-note p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.bio-copy {
  max-width: 680px;
}

.bio-copy h2 {
  margin-bottom: 1.5rem;
}

.bio-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.bio-copy .bio-signoff {
  color: var(--green);
  font-weight: 900;
}

.watch-panel,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(228, 33, 44, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.025);
}

.watch-panel h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.watch-panel p,
.booking p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.video-embed {
  overflow: hidden;
  padding: clamp(0.85rem, 2vw, 1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 33, 44, 0.14), transparent 42%),
    linear-gradient(180deg, #080808, #101210);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.55);
}

.video-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-label a {
  color: var(--green);
}

.video-frame {
  display: grid;
  place-items: center;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 232, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 32%),
    #050505;
}

.video-frame iframe,
.video-frame .tiktok-embed {
  display: block;
  width: min(100%, 390px);
  min-width: 0 !important;
  max-width: 390px !important;
  min-height: 690px;
  margin: 0 !important;
  border: 0;
}

.video-frame .tiktok-embed {
  padding: 0;
}

.video-frame .tiktok-embed a {
  color: var(--green);
  font-weight: 900;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.social-grid a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 84px;
  padding: 1rem;
  color: var(--text);
  font-weight: 850;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 160ms ease,
    background 160ms ease;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  color: var(--green);
  background: rgba(255, 255, 255, 0.04);
}

.social-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #050505;
  font-size: 1.05rem;
  font-weight: 950;
  background: var(--text);
  border-radius: 50%;
}

.booking {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.booking-actions {
  justify-content: end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  color: var(--dim);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.76);
    opacity: 0.65;
  }

  50% {
    transform: scaleY(1.05);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .bio,
  .release-card,
  .watch-panel,
  .stream-panel,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(5.6rem, 22vw, 9.5rem);
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-actions {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem clamp(1rem, 4vw, 2rem) 1rem;
    visibility: hidden;
    background: rgba(7, 7, 7, 0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
  }

  .section-shell {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero {
    gap: 1.55rem;
    padding-top: 1.45rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 21vw, 6.4rem);
    text-shadow: 5px 5px 0 rgba(228, 33, 44, 0.72);
  }

  .hero-subtitle {
    margin-top: 0.85rem;
    font-size: clamp(1.8rem, 9.5vw, 2.65rem);
  }

  .hero-line {
    margin-top: 0.8rem;
    font-size: 1.12rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .artist-meta {
    display: grid;
    gap: 0.25rem;
  }

  .artist-meta li + li::before {
    display: none;
  }

  .button {
    width: 100%;
  }

  .portrait-frame img {
    aspect-ratio: 1.55;
  }

  .waveform {
    display: none;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .release-card,
  .video-strip,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .watch-actions,
  .booking-actions {
    width: 100%;
  }

  .stream-actions {
    justify-content: start;
  }

  .site-footer {
    display: grid;
  }
}

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