:root {
  --bg: #050608;
  --bg-soft: #0b0c11;
  --panel: #0e1015;
  --text: #f2f2f2;
  --muted: #9ca0ab;
  --line: #1f222a;
  --red: #ea262b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto Condensed", sans-serif;
}

body {
  line-height: 1.4;
}

main {
  display: flex;
  flex-direction: column;
}

main > #music {
  order: 1;
}

main > #merch {
  order: 2;
}

main > #about {
  order: 3;
}

main > #visuals {
  order: 4;
}

main > #socials {
  order: 5;
}

body.no-scroll {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #0a0a0e;
  border-bottom: 1px solid #0f1117;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 35%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.82) 58%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(5, 6, 8, 0.86) 62%, #050608 100%);
}

.top-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.5px;
}

.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  object-fit: contain;
}

.brand-icon {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.brand-text {
  font-size: 35px;
  transform: scaleY(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 15px;
}

.nav-links a {
  color: #b9bdc7;
}

.nav-links a:hover {
  color: #fff;
}

.listen-now {
  background: #fff;
  color: #070707 !important;
  padding: 10px 18px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.listen-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.listen-now:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.3);
}

.listen-now:hover::before {
  left: 130%;
}

.listen-now:active {
  transform: translateY(0) scale(0.99);
}

.listen-now:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.nav-mobile-socials {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: calc(100vh - 80px);
  display: grid;
  place-content: center;
  text-align: center;
}

.era-pill {
  display: inline-block;
  margin: 0 auto 14px;
  border: 1px solid rgba(234, 38, 43, 0.7);
  border-radius: 100px;
  padding: 5px 16px;
  color: var(--red);
  font-size: 11px;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(86px, 10vw, 138px);
  line-height: 0.92;
  letter-spacing: 1px;
}

.hero-subtitle {
  margin: 10px 0 30px;
  color: #c2c6cf;
  font-size: clamp(24px, 1.95vw, 36px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 194px;
  height: 58px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 1px solid #3b3f48;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}

.btn-icon-play {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid currentColor;
  transform: translateX(1px);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-secondary {
  background: rgba(12, 13, 16, 0.82);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
}

.hero-cta .btn:hover::before {
  left: 130%;
}

.hero-cta .btn:active {
  transform: translateY(-1px) scale(0.99);
}

.hero-cta .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero-cta .btn-primary:hover {
  background: #ff3340;
  border-color: #ff3340;
  box-shadow: 0 10px 26px rgba(234, 38, 43, 0.38);
}

.hero-cta .btn-secondary:hover {
  background: rgba(22, 24, 30, 0.96);
  border-color: #5a6170;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.about {
  background: #040508;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 34px;
}

.about-image-wrap {
  position: relative;
  border: 1px solid rgba(255, 0, 0, 0.4);
  padding: 2px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.about-image {
  width: 100%;
  height: 970px;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.about-image-wrap:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 64, 0.65);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.018);
  filter: brightness(1.03);
}

.streams-badge {
  position: absolute;
  left: 18px;
  bottom: 62px;
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid #1a1f26;
  padding: 20px 24px;
}

.streams-badge strong {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 53px;
  line-height: 0.95;
}

.streams-badge span {
  font-family: "Anton", sans-serif;
  color: #7e838f;
  letter-spacing: 2px;
  font-size: 17px;
}

.about-copy {
  position: relative;
}

.watermark {
  position: absolute;
  top: -172px;
  left: 0;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Anton", sans-serif;
  font-size: clamp(120px, 13vw, 220px);
  letter-spacing: 2px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.about-copy h2 {
  margin: 0 0 26px;
  font-family: "Anton", sans-serif;
  font-size: clamp(68px, 5vw, 94px);
  line-height: 0.95;
}

.accent {
  color: var(--red);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.about-copy p {
  margin: 0 0 18px;
  color: #c8ccd4;
  font-size: clamp(26px, 1.5vw, 30px);
  max-width: 760px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.15px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
  padding-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(66px, 4.6vw, 92px);
  line-height: 1;
}

.section-head p {
  margin: 0;
  font-size: 34px;
  color: #9ca0ab;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.drops-card {
  background: linear-gradient(90deg, rgba(22, 23, 29, 0.95), rgba(27, 12, 17, 0.85));
  border: 1px solid #1c1f27;
  border-radius: 10px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 34px;
}

.drops-left img {
  width: 100%;
  height: 464px;
  object-fit: cover;
  border-radius: 10px;
}

.kicker {
  color: var(--red);
  font-family: "Anton", sans-serif;
  letter-spacing: 1.8px;
  font-size: 21px;
}

.drops-right h3 {
  margin: 4px 0 12px;
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 4.5vw, 80px);
  line-height: 1;
}

.drops-right > p {
  margin: 0 0 20px;
  color: #c2c6ce;
  font-size: 33px;
  max-width: 980px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.15px;
}

.spotify-slot {
  margin-top: 20px;
  background: #111317;
  border: 1px solid #232731;
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}

.spotify-slot iframe {
  display: block;
  width: 100%;
  min-height: 352px;
}

.platform-buttons {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.btn-tertiary {
  min-width: 144px;
  height: 48px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #3a4049;
  background: transparent;
}

.platform-buttons .btn-tertiary:hover {
  transform: translateY(-3px);
}

.platform-buttons .btn-tertiary:hover::before {
  left: 130%;
}

.platform-buttons .btn-tertiary:active {
  transform: translateY(-1px) scale(0.99);
}

.platform-buttons .btn-tertiary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.platform-buttons .btn-tertiary:first-child:hover {
  border-color: #ff434f;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(234, 38, 43, 0.28);
}

.platform-buttons .btn-tertiary:last-child:hover {
  background: rgba(22, 24, 30, 0.96);
  border-color: #5a6170;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.visuals {
  background: var(--bg-soft);
}

.section-head.centered {
  justify-content: center;
  border-bottom: 0;
  margin-bottom: 38px;
}

.section-head.centered h2 {
  position: relative;
  padding-bottom: 22px;
}

.section-head.centered h2::after {
  content: "";
  width: 110px;
  height: 4px;
  background: var(--red);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visual-card {
  position: relative;
  background: #111317;
  border: 1px solid #1e2229;
  min-height: 255px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 54% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.28s ease, transform 0.28s ease;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-content: center;
  z-index: 2;
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid rgba(255, 255, 255, 0.96);
  transform: translateX(2px);
}

.visual-card:hover .play,
.visual-card:focus-visible .play,
.visual-card:active .play {
  border-color: rgba(234, 38, 43, 0.9);
  background: rgba(234, 38, 43, 0.28);
}

.visual-card:hover .play::before,
.visual-card:focus-visible .play::before,
.visual-card:active .play::before {
  border-left-color: #ff3846;
}

.visual-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  z-index: 2;
}

.visual-meta strong {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1vw, 22px);
  line-height: 1.08;
  text-wrap: pretty;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.visual-meta small {
  display: block;
  color: var(--red);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: clamp(11px, 0.62vw, 14px);
  margin-top: 5px;
}

.visual-card:hover {
  transform: translateY(-4px);
  border-color: #353b48;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.visual-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

.view-all-wrap {
  margin-top: 28px;
  text-align: center;
}

.view-all {
  font-family: "Anton", sans-serif;
  font-size: 33px;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
}

.merch {
  background: #06070b;
  border-top: 1px solid #11141b;
  border-bottom: 1px solid #11141b;
}

.merch-card {
  background: linear-gradient(95deg, rgba(18, 20, 27, 0.94), rgba(20, 10, 15, 0.9));
  border: 1px solid #1f232c;
  border-radius: 10px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 28px;
}

.merch-gallery {
  display: grid;
  gap: 12px;
}

.merch-main {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  border: 1px solid #2a303c;
  background: #090c14;
}

.merch-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: start;
}

.merch-thumbs img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  border: 1px solid #252a35;
  background: #090c14;
  filter: grayscale(100%) brightness(0.84);
  transition: filter 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.merch-thumbs img:hover {
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px);
  border-color: #3b424f;
}

.merch-content {
  align-self: center;
}

.merch-zoomable {
  cursor: zoom-in;
}

.merch-content h3 {
  margin: 8px 0 14px;
  font-family: "Anton", sans-serif;
  font-size: clamp(54px, 4.1vw, 74px);
  line-height: 1;
}

.merch-content p {
  margin: 0;
  color: #c5c9d0;
  font-size: clamp(22px, 1.35vw, 30px);
  line-height: 1.35;
}

.merch-sizes {
  margin-top: 18px;
}

.merch-sizes span {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  letter-spacing: 0.8px;
  color: #e7e9ef;
}

.merch-sizes ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.merch-sizes li {
  min-width: 62px;
}

.merch-size-btn {
  width: 100%;
  min-width: 62px;
  padding: 8px 12px;
  border: 1px solid #343a46;
  background: rgba(12, 14, 20, 0.82);
  color: #f0f2f6;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.merch-size-btn:hover {
  transform: translateY(-1px);
  border-color: #4a5261;
}

.merch-size-btn.active {
  border-color: #ff434f;
  background: rgba(234, 38, 43, 0.14);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(234, 38, 43, 0.26), inset 0 0 0 1px rgba(234, 38, 43, 0.3);
}

.merch-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.merch-price-summary {
  margin-top: 16px;
  border: 1px solid #2a303b;
  background: rgba(8, 10, 15, 0.75);
  border-radius: 6px;
  padding: 12px 14px;
}

.merch-price-summary h4 {
  margin: 0 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 23px;
  letter-spacing: 0.5px;
  color: #f3f5f9;
}

.merch-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #c8cdd5;
  font-size: 19px;
  line-height: 1.25;
}

.merch-price-row + .merch-price-row {
  margin-top: 6px;
}

.merch-price-row strong {
  color: #ffffff;
  font-weight: 700;
}

.pay-btn {
  min-width: 190px;
  height: 52px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

.pay-btn .pay-label {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
}

.pay-btn-paypal {
  background: linear-gradient(90deg, #003087 0%, #0070ba 100%);
  border-color: #0b56a1;
  color: #fff;
}

.pay-btn-paypal .pay-label {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.pay-btn-paypal .pay-pal {
  color: #b7e4ff;
}

.pay-btn-paypal:hover {
  box-shadow: 0 10px 20px rgba(0, 112, 186, 0.28);
}

.merch-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.merch-lightbox.open {
  display: block;
}

.merch-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.9);
  backdrop-filter: blur(5px);
}

.merch-lightbox-dialog {
  position: relative;
  width: min(1240px, calc(100% - 42px));
  height: min(90vh, 940px);
  margin: 4vh auto 0;
  border: 1px solid #252a33;
  background: linear-gradient(180deg, #0b0f16, #06080d);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
}

.merch-lightbox-stage {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 62px 20px 84px;
  overflow: auto;
}

.merch-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.18s ease;
  cursor: zoom-in;
}

.merch-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid #2a303c;
  background: rgba(10, 12, 18, 0.9);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.merch-lightbox-nav {
  width: 42px;
  height: 42px;
  border: 1px solid #2b3039;
  background: rgba(10, 12, 18, 0.9);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  justify-self: center;
}

.merch-lightbox-tools {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.merch-lightbox-tools button {
  min-width: 64px;
  height: 38px;
  border: 1px solid #2b3039;
  background: rgba(10, 12, 18, 0.95);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.merch-lightbox-tools button:hover,
.merch-lightbox-nav:hover,
.merch-lightbox-close:hover {
  border-color: #515b6c;
}

.social-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.social-head h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Anton", sans-serif;
  font-size: clamp(60px, 4.4vw, 84px);
}

.ig-mark {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.social-handle {
  color: #d2d6dc;
  font-family: "Anton", sans-serif;
  font-size: 21px;
  letter-spacing: 1.2px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-grid a {
  display: block;
  border: 1px solid #252933;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-grid a:hover {
  transform: translateY(-3px);
  border-color: #3a404c;
}

.social-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.22s ease, transform 0.22s ease;
}

.social-grid a:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.footer {
  background: #040506;
  border-top: 1px solid #101218;
  padding-top: 70px;
}

.newsletter {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(64px, 4.6vw, 92px);
  line-height: 1;
}

.newsletter p {
  margin: 16px auto 28px;
  color: #9096a2;
  max-width: 640px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input {
  width: min(430px, 100%);
  height: 58px;
  background: #0f1117;
  border: 1px solid #20232c;
  color: #fff;
  padding: 0 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.subscribe-form button {
  height: 58px;
  min-width: 176px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-links {
  margin-top: 62px;
  border-top: 1px solid #12141b;
  padding-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-links h4 {
  margin: 0 0 12px;
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  font-size: 22px;
}

.footer-links a {
  color: #9fa4ae;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.follow-icons {
  display: flex;
  gap: 14px;
}

.follow-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid #2b303a;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #aeb3bc;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease;
}

.follow-icons a:hover {
  transform: translateY(-2px);
  border-color: #465064;
  color: #ffffff;
  background: rgba(16, 19, 27, 0.7);
}

.follow-icons a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.follow-icons a .icon-fill {
  fill: currentColor;
  stroke: none;
}

.copyright {
  margin-top: 40px;
  border-top: 1px solid #0f1116;
  padding-top: 22px;
  color: #69707d;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
  background: rgba(8, 10, 16, 0.72);
  border: 1px solid #2a3040;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  padding: 7px;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.4px;
  background: #fff;
  margin: 5px 0;
  border-radius: 99px;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

body.menu-open .menu-toggle {
  border-color: #4a5467;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .brand-logo {
    height: 50px;
  }

  .nav-links {
    gap: 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(66px, 11vw, 110px);
  }

  .hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
  }

  .btn {
    min-width: 170px;
    height: 52px;
    font-size: 19px;
  }

  .about-grid,
  .drops-card {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: clamp(560px, 72vw, 760px);
    object-fit: cover;
    object-position: center 16%;
  }

  .watermark {
    top: -104px;
    font-size: 110px;
  }

  .section-head h2,
  .newsletter h2,
  .about-copy h2 {
    font-size: clamp(46px, 9vw, 72px);
  }

  .section-head p,
  .about-copy p,
  .drops-right > p,
  .newsletter p,
  .footer-links a,
  .view-all {
    font-size: clamp(20px, 2.4vw, 28px);
  }

  .visual-meta strong {
    font-size: clamp(15px, 2vw, 19px);
  }

  .visual-meta small {
    font-size: clamp(11px, 1.2vw, 13px);
  }

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

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .merch-card {
    grid-template-columns: 1fr;
  }

  .merch-content h3 {
    font-size: clamp(46px, 8vw, 64px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .top-nav.container {
    width: calc(100% - 24px);
    max-width: 1120px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 60;
    padding: 10px 12px;
    border: 1px solid rgba(84, 94, 116, 0.38);
    border-radius: 14px;
    background: rgba(7, 10, 16, 0.42);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.28s ease,
      border-color 0.28s ease,
      box-shadow 0.28s ease;
  }

  .top-nav.mobile-scrolled {
    background: rgba(7, 10, 16, 0.72);
    border-color: rgba(90, 103, 128, 0.52);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  }

  .top-nav.mobile-hidden {
    transform: translateX(-50%) translateY(calc(-100% - 16px));
  }

  body.menu-open .top-nav.container {
    background: rgba(8, 11, 18, 0.9);
    border-color: rgba(102, 114, 138, 0.62);
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 20;
    position: relative;
  }

  .brand-logo {
    height: 50px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background:
      radial-gradient(circle at 10% 10%, rgba(234, 38, 43, 0.1), rgba(0, 0, 0, 0) 35%),
      linear-gradient(170deg, rgba(11, 14, 20, 0.95), rgba(5, 8, 13, 0.97));
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 112px 28px 38px;
    gap: 18px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.04s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.08s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.12s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.16s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.24s;
  }

  .nav-links.open li:nth-child(7) {
    transition-delay: 0.28s;
  }

  .nav-links.open li:nth-child(8) {
    transition-delay: 0.32s;
  }

  .nav-links a {
    font-size: clamp(25px, 7.2vw, 34px);
    letter-spacing: 1.1px;
    color: #e4e8f0;
    width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
  }

  .nav-links a:not(.listen-now)::after {
    content: "";
    width: 0;
    height: 2px;
    margin-left: 10px;
    background: linear-gradient(90deg, var(--red), rgba(234, 38, 43, 0));
    transition: width 0.22s ease;
  }

  .nav-links a:not(.listen-now):hover::after {
    width: 64px;
  }

  .listen-now {
    margin-top: 14px;
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 14px 24px;
    font-size: 24px;
    letter-spacing: 0.8px;
    border-radius: 4px;
    border-color: #f0f2f5;
    box-shadow: none;
  }

  .nav-mobile-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .nav-mobile-socials a {
    width: 46px;
    height: 46px;
    border: 1px solid #2f3746;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d7dbe3;
    background: rgba(12, 16, 24, 0.72);
    padding: 0;
    transition:
      transform 0.22s ease,
      border-color 0.22s ease,
      color 0.22s ease,
      background-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .nav-mobile-socials a::after {
    content: none !important;
  }

  .nav-mobile-socials a:hover {
    transform: translateY(-2px);
    border-color: #4c5a72;
    color: #ffffff;
    background: rgba(16, 20, 30, 0.95);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  }

  .nav-mobile-socials a svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-mobile-socials a .icon-fill {
    fill: currentColor;
    stroke: none;
  }

  .hero-content {
    min-height: calc(100vh - 68px);
  }

  .hero-subtitle {
    line-height: 1.2;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .about-image-wrap {
    background: #07090e;
  }

  .about-image {
    height: clamp(420px, 78vw, 620px);
    object-fit: cover;
    object-position: center 18%;
  }

  .streams-badge {
    left: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .streams-badge strong {
    font-size: 34px;
  }

  .streams-badge span {
    font-size: 12px;
  }

  .watermark {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .drops-card {
    padding: 14px;
    gap: 16px;
  }

  .merch-card {
    padding: 14px;
    gap: 14px;
  }

  .merch-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .merch-sizes li {
    min-width: 56px;
  }

  .merch-size-btn {
    min-width: 56px;
    font-size: 15px;
  }

  .merch-buttons {
    flex-direction: column;
    align-items: center;
  }

  .merch-price-summary h4 {
    font-size: 20px;
  }

  .merch-price-row {
    font-size: 17px;
  }

  .pay-btn {
    width: 100%;
    max-width: 520px;
  }

  .pay-btn-paypal .pay-label {
    font-size: 28px;
  }

  .merch-lightbox-dialog {
    width: calc(100% - 20px);
    height: 90vh;
    grid-template-columns: 44px 1fr 44px;
  }

  .merch-lightbox-stage {
    padding: 54px 10px 78px;
  }

  .merch-lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .drops-left img {
    height: clamp(400px, 120vw, 560px);
    max-height: 78vh;
    object-position: center 24%;
  }

  .spotify-slot {
    padding: 8px;
    border-radius: 12px;
  }

  .spotify-slot iframe {
    min-height: 320px;
    height: clamp(320px, 56vh, 390px);
  }

  .visual-grid,
  .social-grid,
  .footer-links,
  .copyright,
  .platform-buttons,
  .subscribe-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .platform-buttons,
  .subscribe-form,
  .copyright {
    display: flex;
  }

  .platform-buttons {
    align-items: center;
    gap: 10px;
  }

  .platform-buttons .btn-tertiary {
    width: min(100%, 520px);
    margin: 0 auto;
    text-align: center;
  }

  .subscribe-form input,
  .subscribe-form button,
  .btn-tertiary {
    width: 100%;
  }
}
