:root {
  --bg: #040506;
  --panel: rgba(9, 12, 15, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff1212;
  --red-soft: rgba(255, 18, 18, 0.45);
  --ink: #f4f4f4;
  --muted: #8d929a;
}

@font-face {
  font-family: "Trashlane";
  src:
    url("assets/fonts/trashlane.otf?v=2") format("opentype"),
    url("assets/fonts/Thrashlane.otf?v=2") format("opentype"),
    url("assets/fonts/trashlane.OTF?v=2") format("opentype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(2, 3, 4, 0.72), rgba(2, 3, 4, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(255, 18, 18, 0.2), transparent 34%),
    url("assets/backgroud.png") center / cover fixed no-repeat;
  font-family: Inter, Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.15) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.site-shell {
  width: min(1480px, calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 24px;
  z-index: 20;
  min-height: 86px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 18, 18, 0.06), transparent 28%, transparent 72%, rgba(255, 18, 18, 0.06)),
    rgba(3, 5, 7, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 50px rgba(255, 18, 18, 0.1);
}

.logo {
  position: relative;
  justify-self: start;
  width: 180px;
  height: 58px;
  display: block;
  overflow: visible;
}

.logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(255, 18, 18, 0.55))
    drop-shadow(0 0 12px rgba(255, 18, 18, 0.42))
    drop-shadow(0 0 24px rgba(255, 18, 18, 0.22));
  animation: logoNeonPulse 2.8s ease-in-out infinite alternate;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 4px rgba(255, 18, 18, 0.55))
    drop-shadow(0 0 12px rgba(255, 18, 18, 0.42))
    drop-shadow(0 0 24px rgba(255, 18, 18, 0.22));
  animation:
    logoFloat 4s ease-in-out infinite alternate,
    logoNeonPulse 2.8s ease-in-out infinite alternate;
}

.hero-center {
  position: relative;
  overflow: visible;
}

.nav-links,
.socials {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 42px;
}

.nav-links a {
  position: relative;
  color: #d0d1d4;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.socials {
  justify-self: end;
  gap: 18px;
  color: #e6e6e6;
  font-size: 20px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.8fr;
  align-items: center;
  gap: 36px;
  margin-top: 22px;
  padding: 74px 44px 46px;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.075),
    0 28px 120px rgba(0, 0, 0, 0.5);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,5,7,0.86), transparent 34%, transparent 64%, rgba(3,5,7,0.88)),
    linear-gradient(0deg, rgba(3,5,7,0.65), transparent 42%, rgba(3,5,7,0.28));
}

.hero-left,
.hero-center,
.hero-right,
.scroll-cue {
  position: relative;
  z-index: 1;
}

.hero-left p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-left span {
  width: 74px;
  height: 1px;
  display: block;
  margin: 42px 0 20px;
  background: var(--red);
}

.hero-left strong,
.code,
.section-title h2 {
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-right p {
  color: #c3c6cc;
  font-size: 14px;
  line-height: 1.8;
}

.outline-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 18, 18, 0.38);
  border-radius: 4px;
  padding: 13px 22px;
  color: var(--red);
  background: rgba(255, 18, 18, 0.035);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.outline-button:hover {
  background: rgba(255, 18, 18, 0.13);
  box-shadow: 0 0 28px rgba(255, 18, 18, 0.22);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #d0d1d4;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 11px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 99px;
}

.section {
  padding: 74px 0 0;
}

.page-hero {
  min-height: 380px;
  display: grid;
  align-content: end;
  padding: 120px 0 52px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 18, 18, 0.22);
}

.page-hero p:last-child {
  max-width: 720px;
  color: #c3c6cc;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.section-title h2 {
  margin: 0;
  color: #d8d9dc;
  font-size: 22px;
}

.section-title a {
  margin-left: auto;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-layout {
  display: grid;
  grid-template-columns: 320px 220px 1fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.cover-card,
.track-list,
.sound-card,
.newsletter {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 18, 18, 0.055), transparent 40%),
    rgba(9, 12, 15, 0.62);
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.018),
    0 22px 80px rgba(0, 0, 0, 0.28);
}

.abstract-cover {
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: end;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, transparent 0 20%, rgba(255,18,18,0.2) 21%, transparent 34%),
    linear-gradient(135deg, #030405, #160607 48%, #030405);
}

.abstract-cover::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 18, 18, 0.34);
  transform: rotate(-18deg);
  box-shadow: 0 0 40px rgba(255,18,18,0.18);
}

.abstract-cover span {
  color: var(--red);
  font-size: 11px;
}

.release-info h3 {
  margin: 12px 0;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.release-info p {
  color: var(--muted);
}

.release-info strong {
  color: var(--red);
  text-transform: uppercase;
}

.platforms {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.platforms span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  background: #d8d9dc;
}

.releases {
  padding-bottom: 96px;
}

.release-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.release-card {
  min-height: 430px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5, 7, 10, 0.66);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.release-card:hover {
  transform: translateY(-10px) rotate(0.35deg);
  border-color: rgba(255, 18, 18, 0.5);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.44),
    0 0 46px rgba(255, 18, 18, 0.16);
}

.release-card.is-featured {
  min-height: 520px;
}

.cover {
  min-height: 430px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 18, 18, 0.52), transparent 9%),
    repeating-linear-gradient(132deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #050607, #170607 48%, #050607);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.release-card.is-featured .cover {
  min-height: 520px;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), transparent 38%, rgba(0,0,0,0.3)),
    radial-gradient(circle at 18% 14%, rgba(255, 18, 18, 0.25), transparent 30%);
  pointer-events: none;
}

.cover-b {
  background:
    radial-gradient(circle at 28% 40%, rgba(255, 18, 18, 0.5), transparent 12%),
    linear-gradient(140deg, #220506, #05070a 52%, #3a0507);
}

.cover-c {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 2px, transparent 2px 14px),
    linear-gradient(145deg, #05070a, #ff1212 48%, #0b0d10);
}

.play-button {
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  color: #050607;
  background: #f6f6f6;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.35),
    0 0 30px rgba(255, 18, 18, 0.38);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.45),
    0 0 44px rgba(255, 18, 18, 0.54);
}

.release-meta {
  width: calc(100% + 36px);
  position: relative;
  z-index: 1;
  margin: 0 -18px -18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 10, 0.58);
  backdrop-filter: blur(13px);
}

.release-meta span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-meta h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-family: "Trashlane", "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.release-meta p {
  max-width: 520px;
  margin: 0;
  color: #c9ccd2;
  font-size: 14px;
  line-height: 1.5;
}

.track-list {
  margin: 0;
  padding: 26px 34px;
  list-style-position: inside;
}

.track-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #d8d9dc;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-list li:last-child {
  border-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-copy,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 18, 18, 0.055), transparent 40%),
    rgba(9, 12, 15, 0.62);
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.018),
    0 22px 80px rgba(0, 0, 0, 0.28);
}

.contact-copy {
  padding: 28px;
}

.contact-copy h3 {
  margin: 28px 0 18px;
  color: #fff;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8d9dc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.38);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 18, 18, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 18, 18, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.crew-section {
  padding-bottom: 96px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.crew-card {
  display: grid;
  grid-template-rows: 280px 1fr;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 18, 18, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 13, 0.78);
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.018),
    0 28px 100px rgba(0, 0, 0, 0.36);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.crew-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 18, 18, 0.45);
  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.018),
    0 24px 90px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(255, 18, 18, 0.12);
}

.crew-photo {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 18, 18, 0.24), transparent 54%),
    linear-gradient(180deg, rgba(255, 18, 18, 0.04), transparent 72%);
}

.crew-photo::before {
  content: none;
}

.crew-photo::after {
  content: none;
}

.crew-photo.placeholder-two {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 18, 18, 0.24), transparent 54%),
    linear-gradient(180deg, rgba(255, 18, 18, 0.04), transparent 72%);
}

.crew-photo span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 92px;
  letter-spacing: 0.06em;
  text-shadow: 0 0 22px rgba(255, 18, 18, 0.5);
}

.artist-logo-slot img {
  position: relative;
  z-index: 1;
  width: min(122%, 580px);
  max-height: 310px;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.18);
  filter:
    brightness(1.08)
    drop-shadow(0 0 7px rgba(255, 18, 18, 0.78))
    drop-shadow(0 0 28px rgba(255, 18, 18, 0.38));
}

.artist-logo-slot img.dj-cut-logo {
  transform: scale(1.08);
}

.crew-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 28px 28px;
}

.crew-info h3 {
  margin: 10px 0 14px;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.crew-info p:not(.code) {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.crew-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.crew-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 18, 18, 0.34);
  border-radius: 12px;
  color: #f1f1f1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 18, 18, 0.08);
}

.crew-links a:hover {
  color: #050607;
  background: var(--red);
}

.sound-section {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 24px;
}

.sound-copy h3 {
  margin: 28px 0 18px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sound-copy p {
  max-width: 300px;
  color: var(--muted);
  line-height: 1.7;
}

.sound-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.sound-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 260ms ease, opacity 260ms ease;
}

.sound-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.sound-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 38px;
}

.upcoming article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.upcoming time {
  font-size: 30px;
}

.upcoming small,
.upcoming span,
.footer {
  color: var(--muted);
}

.upcoming small {
  display: block;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.upcoming p {
  margin: 0;
  line-height: 1.5;
}

.upcoming a {
  color: var(--red);
  text-transform: uppercase;
}

.about-image {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter {
  margin-top: 74px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 30px;
  border-radius: 24px;
}

.newsletter h2 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-logo {
  width: 150px;
  height: 58px;
}

.newsletter p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.newsletter form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.newsletter input {
  min-height: 54px;
  flex: 1;
  border: 0;
  padding: 0 22px;
  color: var(--ink);
  background: rgba(0,0,0,0.35);
}

.newsletter button {
  width: 64px;
  border: 0;
  color: var(--red);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.contact-mail {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 18, 18, 0.34);
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: rgba(255, 18, 18, 0.08);
  box-shadow: 0 0 34px rgba(255, 18, 18, 0.1);
}

.contact-mail:hover {
  color: #050607;
  background: var(--red);
}

.footer {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spark {
  color: var(--red);
  text-shadow: 0 0 20px var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes neonPulse {
  from { filter: brightness(0.9); }
  to { filter: brightness(1.28); }
}

@keyframes logoNeonPulse {
  from {
    filter:
      drop-shadow(0 0 3px rgba(255, 18, 18, 0.4))
      drop-shadow(0 0 9px rgba(255, 18, 18, 0.26));
  }
  to {
    filter:
      drop-shadow(0 0 5px rgba(255, 18, 18, 0.72))
      drop-shadow(0 0 16px rgba(255, 18, 18, 0.5))
      drop-shadow(0 0 32px rgba(255, 18, 18, 0.3));
  }
}

@keyframes logoFloat {
  from { transform: translateY(0) rotate(-0.4deg); }
  to { transform: translateY(-10px) rotate(0.4deg); }
}

@media (max-width: 960px) {
  .nav,
  .hero,
  .release-layout,
  .release-grid,
  .sound-section,
  .crew-grid,
  .crew-card,
  .contact-section,
  .about-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .nav {
    grid-template-columns: 1fr auto;
    top: 12px;
    min-height: 72px;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    gap: 12px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: block;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 5px auto;
    display: block;
    background: currentColor;
  }

  .nav-links,
  .socials {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    z-index: 30;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 10, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: none;
  }

  .nav-links.is-open a {
    min-height: auto;
    display: block;
    padding: 12px 11px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .nav-links.is-open a.is-active,
  .nav-links.is-open a:hover {
    color: var(--red);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links a.is-active::after {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 46px 24px;
  }

  .hero-logo {
    margin-left: 0;
  }

  .release-layout {
    align-items: stretch;
  }

  .release-card,
  .release-card.is-featured,
  .cover,
  .release-card.is-featured .cover {
    min-height: 420px;
  }

  .crew-photo {
    min-height: 260px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 20px, 1480px);
  }

  .logo {
    width: 124px;
    height: 40px;
  }

  .hero-logo {
    max-width: 360px;
  }

  .newsletter {
    padding: 20px;
  }
}
