:root {
  --black: #0b0b0f;
  --deep-indigo: #2a1f4f;
  --electric-magenta: #d23b9a;
  --burnt-orange: #f25a29;
  --violet-haze: #6c3fcf;
  --text: #ffffff;
  --line: rgba(255, 255, 255, 0.42);
  --hero-line: rgba(255, 255, 255, 0.35);
  --panel: rgba(7, 7, 12, 0.6);
  --glow: rgba(210, 59, 154, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.85),
    0 2px 3px rgba(0, 0, 0, 0.55);
  background: var(--black);
  position: relative;
  z-index: 0;
}

.bg-image {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: url("webbg.png");
  background-position: center 28%;
  background-size: 109% auto;
  background-repeat: no-repeat;
  filter: brightness(64%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 0.8px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.top-nav-wrap {
  position: relative;
  top: auto;
  z-index: 10;
  backdrop-filter: none;
  background: transparent;
}

.top-nav {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(1.25rem + clamp(24px, 3.5vw, 50px) - 30px) clamp(1rem, 4vw, 3rem) 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: clamp(2.34rem, 4.65vw, 3.75rem);
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 0 1.1rem;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to top, var(--burnt-orange) 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  filter: brightness(3.375);
  transition: background-position 250ms ease, opacity 200ms ease;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(80px, 12vw, 180px);
  height: 1px;
}

.brand-mark::before {
  right: 100%;
  margin-right: 0.6rem;
  background: linear-gradient(to right, transparent, var(--line));
}

.brand-mark::after {
  left: 100%;
  margin-left: calc(0.6rem - 5px);
  background: linear-gradient(to left, transparent, var(--line));
}

.nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  flex-wrap: wrap;
}

.nav-group a {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-size: clamp(1.23rem, 2.45vw, 2rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 1;
  background-image: linear-gradient(to top, var(--burnt-orange) 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  filter: brightness(3.375);
  transition: background-position 250ms ease, opacity 200ms ease;
}

.nav-group a:hover,
.nav-group a:focus-visible,
.brand-mark:hover,
.brand-mark:focus-visible {
  opacity: 1;
  background-position: 0 100%;
}

main {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.5rem 1.2rem 4rem;
}

.home-page main {
  top: calc(clamp(30px, 8vh, 100px) - 125px);
}

.music-page main {
  top: -30px;
}

.hero {
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: clamp(2.2rem, 7vh, 4.6rem);
  animation: rise 650ms ease-out both;
}

.hero p,
.panel h2,
.cover span,
.beats p,
.contact-line {
  transform: translateY(-20%);
}

.tagline {
  margin: 0;
  font-size: clamp(0.84rem, 2.6vw, 1.34rem);
  letter-spacing: 0.2em;
}

.music-page .tagline {
  position: relative;
  top: 25px;
}

.hairline {
  width: min(620px, 86vw);
  height: 1px;
  margin: 1.1rem 0;
  background: linear-gradient(to right, transparent, var(--hero-line), transparent);
}

.music-page .hairline {
  transform: translateY(20px);
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.music-page .roles {
  position: relative;
  top: 20px;
}

.roles {
  margin: 0;
  font-size: clamp(0.8rem, 2.4vw, 1.15rem);
  letter-spacing: 0.2em;
}

.subline {
  margin-top: calc(clamp(2.6rem, 7.5vh, 5.5rem) - 20px);
  font-size: clamp(0.92rem, 2vw, 1.25rem);
  opacity: 0.95;
}

.home-page .subline {
  margin-top: calc(clamp(2.6rem, 7.5vh, 5.5rem) - 25px);
}

.panel {
  margin-top: 1rem;
  padding: 1.6rem 0 0.6rem;
}

.hero ~ .panel {
  position: relative;
  top: clamp(-95px, -9vh, -24px);
}

.music-page .hero ~ .panel {
  top: calc(clamp(-95px, -9vh, -24px) - 150px);
}

.home-page .hero ~ .panel {
  top: calc(clamp(-95px, -9vh, -24px) - 150px);
}

.credits {
  margin-top: clamp(-4.1rem, -5vw, -1.3rem);
  padding-bottom: 0.1rem;
}

@media (max-width: 1600px) {
  .hero p {
    transform: translateY(-10%);
  }

  .panel h2,
  .cover span,
  .beats p,
  .contact-line {
    transform: none;
  }

  .home-page main {
    top: calc(clamp(16px, 4vh, 52px) - 125px);
  }

  .subline {
    margin-top: clamp(2.2rem, 4.6vh, 3.8rem);
  }

  .hero ~ .panel {
    top: clamp(-42px, -4vh, -10px);
  }

  .home-page .hero ~ .panel,
  .music-page .hero ~ .panel {
    top: clamp(-10px, -1.2vh, 8px);
  }

  .music-page .hero ~ .panel {
    top: calc(clamp(-10px, -1.2vh, 8px) - 18px);
  }

  .credits {
    margin-top: clamp(-1.5rem, -2.2vw, -0.35rem);
  }

  .home-page .credits,
  .music-page .credits {
    margin-top: clamp(-0.9rem, -1.2vw, -0.15rem);
  }

  .music-page .credits,
  .music-page .releases,
  .music-page .social-footer {
    top: 0;
  }

  .home-page .credits,
  .home-page .releases,
  .home-page .beats-page-panel,
  .home-page .contact {
    top: 14px;
  }

  .logo-row {
    max-width: 760px;
    column-gap: 1.2rem;
    row-gap: 1.35rem;
    padding: 0.85rem 0.75rem 0.65rem;
  }

  .logo-pill {
    min-height: 92px;
    padding: 0.45rem 0.6rem;
  }

  .logo-row .marshmello-logo {
    transform: scale(0.9);
  }

  .logo-row .maroon5-logo,
  .logo-row .boiangel-logo,
  .logo-row .universal-logo {
    transform: scale(1.02);
  }

  .logo-row .interscope-logo {
    transform: translateY(2px) scale(1.15);
  }
}

.credits h2 {
  margin: 0 0 0.7rem;
  padding: 0.7rem 0;
  position: relative;
}

.credits h2::before,
.credits h2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.credits h2::before {
  top: 0;
}

.credits h2::after {
  bottom: 0;
}

.panel h2 {
  margin: 0 0 1.4rem;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  position: relative;
}

.panel h2::before,
.panel h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24%;
  height: 1px;
}

.panel h2::before {
  left: 0;
  right: auto;
  background: linear-gradient(to right, transparent, var(--line));
}

.panel h2::after {
  right: 0;
  left: auto;
  background: linear-gradient(to left, transparent, var(--line));
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  column-gap: 1.87rem;
  row-gap: 2.55rem;
  max-width: 901px;
  margin: 0 auto;
  padding: 0.94rem 0.85rem 0.77rem;
}

.logo-pill-top-left {
  grid-column: 1;
  grid-row: 1;
}

.logo-pill-top-center {
  grid-column: 3;
  grid-row: 1;
}

.logo-pill-top-right {
  grid-column: 5;
  grid-row: 1;
}

.logo-pill-bottom-left {
  grid-column: 2;
  grid-row: 2;
}

.logo-pill-bottom-right {
  grid-column: 4;
  grid-row: 2;
}

.logo-pill {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 0.68rem 0.85rem;
}

.credit-logo {
  display: block;
  width: auto;
  max-width: 84%;
  max-height: 96px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.marshmello-logo {
  display: block;
  width: auto;
  max-width: 96%;
  max-height: 1076px;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    brightness(0.9)
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.95))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
}

.maroon5-logo {
  max-height: 160px;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.95))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
}

.boiangel-logo {
  max-height: 320px;
  max-width: 88%;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 1px 1px rgba(0, 0, 0, 0.95))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
}

.interscope-logo {
  max-height: 212px;
}

.universal-logo {
  max-height: 448px;
}

.logo-row .marshmello-logo,
.logo-row .maroon5-logo,
.logo-row .boiangel-logo,
.logo-row .interscope-logo,
.logo-row .universal-logo {
  transform: scale(2);
  transform-origin: center center;
}

.logo-row .interscope-logo {
  transform: translateY(10px) scale(2.3);
}

.logo-row .maroon5-logo,
.logo-row .boiangel-logo,
.logo-row .universal-logo {
  transform: scale(2.4);
}

.logo-row .interscope-logo {
  transform: translateY(10px) scale(3.31);
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 860px;
  margin: 0 auto;
}

.release-card {
  height: 92px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(3px);
}

.release-card-ep {
  height: 530px;
}

.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(242, 90, 41, 0.5) 0%,
    rgba(242, 90, 41, 0.24) 28%,
    rgba(242, 90, 41, 0) 62%
  );
  transform: translateY(100%);
  transition: transform 250ms ease;
}

.release-card:hover::after,
.release-card:focus-within::after {
  transform: translateY(0);
}

.cover {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cover span {
  position: relative;
  z-index: 2;
  background: rgba(8, 8, 13, 0.52);
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.haze {
  background-image:
    linear-gradient(155deg, rgba(11, 11, 15, 0.65), rgba(42, 31, 79, 0.45)),
    url("The Wanderers Art.PNG"),
    linear-gradient(160deg, #121a2f 0%, #122238 40%, #0e1322 100%);
  background-blend-mode: normal, soft-light, normal;
}

.young-again {
  background-image:
    linear-gradient(150deg, rgba(11, 11, 15, 0.62), rgba(42, 31, 79, 0.46)),
    url("The Wanderers Art.PNG"),
    linear-gradient(150deg, #2d1a3f, #1d1026 44%, #170f1f 100%);
  background-blend-mode: normal, soft-light, normal;
}

.fall-for-you {
  background-image:
    linear-gradient(145deg, rgba(11, 11, 15, 0.62), rgba(42, 31, 79, 0.46)),
    url("The Wanderers Art.PNG"),
    linear-gradient(140deg, #1f1a34, #151526 48%, #110f1d 100%);
  background-blend-mode: normal, soft-light, normal;
}

.haze::after,
.young-again::after,
.fall-for-you::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 22%, rgba(242, 90, 41, 0.42), transparent 45%),
    radial-gradient(circle at 24% 76%, rgba(210, 59, 154, 0.3), transparent 48%),
    radial-gradient(circle at 56% 64%, rgba(108, 63, 207, 0.32), transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.78;
}

.player {
  padding: 0.3rem 0.4rem 0.4rem;
  background: rgba(5, 5, 8, 0.78);
}

.spotify-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.spotify-embed-square {
  min-height: 100%;
}

.spotify-embed-ep {
  min-height: 100%;
}

.soundcloud-card {
  height: 330px;
  padding: 4px;
}

.soundcloud-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  filter: invert(1) hue-rotate(180deg) brightness(0.93) contrast(1.02);
}

.beats p {
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

.beats a {
  color: #fff;
}

.contact {
  padding-bottom: 2.4rem;
}

.contact-line {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: clamp(1.02rem, 3.5vw, 1.7rem);
  font-family: "Cinzel", serif;
}

.contact-role {
  margin: 0.55rem 0 0.34rem;
  text-align: center;
  font-size: clamp(0.92rem, 2.1vw, 1.18rem);
  letter-spacing: 0.08em;
  text-transform: none;
  color: #fff;
}

.contact a {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  background-image: linear-gradient(to top, var(--burnt-orange) 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  filter: brightness(3.375);
  transition: background-position 250ms ease;
}

.contact a:hover {
  background-position: 0 100%;
}

.contact-form {
  margin: 1.3rem auto 0;
  max-width: 760px;
  width: 100%;
  padding: 1.15rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(11, 11, 15, 0.52), rgba(42, 31, 79, 0.28));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.contact-form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.contact-form-row label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.contact-form-row input,
.contact-form-row textarea {
  width: 100%;
  color: #fff;
  font: inherit;
  background: rgba(8, 8, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form-row input::placeholder,
.contact-form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-row input:focus,
.contact-form-row textarea:focus {
  border-color: rgba(242, 90, 41, 0.72);
  box-shadow: 0 0 0 2px rgba(242, 90, 41, 0.18);
}

.contact-submit {
  margin-top: 0.35rem;
  display: inline-block;
  color: #fff;
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(242, 90, 41, 0.48), rgba(210, 59, 154, 0.36));
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, filter 200ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.contact-actions {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.mailing-optin {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.35;
  opacity: 0.94;
}

.mailing-optin input {
  width: 16px;
  height: 16px;
  accent-color: #f25a29;
  cursor: pointer;
}

.mailing-optin span {
  max-width: 540px;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.contact-form-status {
  margin: 0.55rem 0 0.1rem;
  min-height: 1.2em;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.mailing-list-panel {
  margin-top: 1.05rem;
}

.mailing-list-copy {
  margin: 0.2rem auto 0.8rem;
  max-width: 880px;
  text-align: center;
  font-size: clamp(0.9rem, 1.7vw, 1.06rem);
  line-height: 1.6;
  opacity: 0.94;
}

.mailing-list-form {
  margin: 0 auto;
  max-width: 760px;
  width: 100%;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(11, 11, 15, 0.52), rgba(42, 31, 79, 0.28));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.mailing-list-input {
  width: 100%;
  color: #fff;
  font: inherit;
  background: rgba(8, 8, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0.74rem 0.85rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.mailing-list-input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.mailing-list-input:focus {
  border-color: rgba(242, 90, 41, 0.72);
  box-shadow: 0 0 0 2px rgba(242, 90, 41, 0.18);
}

.mailing-list-btn {
  color: #fff;
  font-family: "Cinzel", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(242, 90, 41, 0.48), rgba(210, 59, 154, 0.36));
  padding: 0.74rem 1.2rem;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, filter 200ms ease;
}

.mailing-list-btn:hover,
.mailing-list-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.mailing-list-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.mailing-list-status {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  min-height: 0;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.mailing-list-status:empty {
  display: none;
}

.socials {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.95rem;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 14, 0.6);
  border-radius: 50%;
  transition: transform 200ms ease, border-color 200ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: var(--burnt-orange);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social-footer {
  margin-top: 0.8rem;
  padding-bottom: 1.8rem;
}

.music-page .credits,
.music-page .releases,
.music-page .social-footer {
  position: relative;
  top: -30px;
}

@media (max-width: 1440px) {
  .top-nav {
    max-width: 1120px;
    padding: 1.15rem 1.25rem 1rem;
    gap: 0.55rem;
  }

  .brand-mark {
    font-size: clamp(2rem, 3.6vw, 3rem);
    letter-spacing: 0.1em;
  }

  .nav-group {
    gap: 0.65rem 1.05rem;
  }

  .nav-group a {
    font-size: clamp(1rem, 1.45vw, 1.26rem);
    letter-spacing: 0.07em;
  }

  .home-page main {
    top: -60px;
  }

  .music-page main {
    top: -6px;
  }

  .music-page .tagline {
    top: 12px;
  }

  .music-page .hairline {
    transform: translateY(10px);
  }

  .music-page .roles {
    top: 10px;
  }

  .music-page .credits,
  .music-page .releases,
  .music-page .social-footer {
    top: -12px;
  }

  .logo-row {
    max-width: 760px;
    column-gap: 1.25rem;
    row-gap: 1.55rem;
    padding: 0.8rem 0.75rem 0.6rem;
  }

  .logo-pill {
    min-height: 98px;
    padding: 0.5rem 0.7rem;
  }

  .logo-row .marshmello-logo {
    transform: scale(1.35);
  }

  .logo-row .maroon5-logo,
  .logo-row .boiangel-logo,
  .logo-row .universal-logo {
    transform: scale(1.55);
  }

  .logo-row .interscope-logo {
    transform: translateY(6px) scale(1.9);
  }

  .release-card-ep {
    height: 500px;
  }

  .soundcloud-card {
    height: 300px;
  }
}

@media (max-width: 1200px) {
  .top-nav {
    max-width: 980px;
    padding: 0.95rem 1rem 0.9rem;
  }

  .brand-mark::before,
  .brand-mark::after {
    width: clamp(52px, 7vw, 96px);
  }

  .home-page main {
    top: -35px;
  }

  .music-page main {
    top: 0;
  }

  .hero {
    min-height: 38vh;
    padding-top: clamp(1.8rem, 5.4vh, 3.2rem);
  }

  .music-page .credits,
  .music-page .releases,
  .music-page .social-footer {
    top: 0;
  }

  .logo-row {
    max-width: 680px;
    column-gap: 1rem;
    row-gap: 1.2rem;
  }

  .logo-pill {
    min-height: 88px;
    padding: 0.45rem 0.6rem;
  }

  .logo-row .marshmello-logo {
    transform: scale(1.08);
  }

  .logo-row .maroon5-logo,
  .logo-row .boiangel-logo,
  .logo-row .universal-logo {
    transform: scale(1.22);
  }

  .logo-row .interscope-logo {
    transform: translateY(4px) scale(1.45);
  }

  .release-card-ep {
    height: 460px;
  }

  .soundcloud-card {
    height: 280px;
  }
}

.beats-page main {
  max-width: 920px;
  padding-top: 2.2rem;
}

.about-page main {
  max-width: 1240px;
  padding-top: 2.2rem;
}

.about-layout {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 0;
}

.about-copy {
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
  padding: 1rem clamp(1rem, 2.6vw, 2rem) 2rem;
}

.about-copy p {
  margin: 0 0 1.4rem;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.76;
  text-align: center;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.sync-copy {
  text-align: center;
}

.sync-copy p {
  text-align: center;
}

.sync-contact-title {
  margin: 1.2rem 0 0.2rem;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  font-family: "Cinzel", serif;
}

.sync-contact-line {
  margin: 0;
}

.sync-email {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: clamp(1.08rem, 2.3vw, 1.5rem);
  background-image: linear-gradient(to top, var(--burnt-orange) 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  filter: brightness(3.375);
  transition: background-position 250ms ease;
}

.sync-email:hover,
.sync-email:focus-visible {
  background-position: 0 100%;
}

.about-page .about-copy p,
.sync-page .sync-copy p,
.contact-page .contact h2,
.contact-page .contact-role,
.contact-page .contact-line {
  animation: rise 650ms ease-out both;
}

.about-silhouette {
  position: absolute;
  left: clamp(8px, 2vw, 32px);
  top: calc(1rem - 470px);
  transform: translate(-140px, 75px) scale(1.5);
  transform-origin: center top;
  height: calc(100% - 3rem);
  max-width: min(18vw, 240px);
  width: auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.96;
  filter:
    brightness(1.76)
    saturate(0.38)
    contrast(1.06)
    blur(0.2px)
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-silhouette-right {
  left: auto;
  right: clamp(8px, 2vw, 32px);
  transform: translateX(200px) scaleX(-1) scale(2);
}

.beats-hero {
  min-height: 34vh;
  padding-top: clamp(1.2rem, 4vh, 3rem);
}

.beats-page .subline {
  margin-top: calc(clamp(2.6rem, 7.5vh, 5.5rem) + 10px);
}

.beats-page-panel {
  margin-top: 1.6rem;
  padding: 1.8rem 1.2rem 1.2rem;
  background: linear-gradient(145deg, rgba(11, 11, 15, 0.5), rgba(42, 31, 79, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.beats-page .beats-page-panel,
.beats-page .beats-player-panel {
  position: relative;
  top: -150px;
}

.beats-page-panel h2::before,
.beats-page-panel h2::after {
  width: 20%;
}

.beats-page-copy {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.95;
}

.beats-cta-wrap {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
}

.beats-cta {
  display: inline-block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(242, 90, 41, 0.48), rgba(210, 59, 154, 0.38));
  padding: 0.85rem 1.6rem;
  letter-spacing: 0.11em;
  font-weight: 600;
  border-radius: 10px;
}

.beats-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(242, 90, 41, 0.8) 0%,
    rgba(242, 90, 41, 0.45) 35%,
    rgba(242, 90, 41, 0) 70%
  );
  transform: translateY(100%);
  transition: transform 250ms ease;
}

.beats-cta:hover {
  border-color: rgba(255, 255, 255, 0.46);
}

.beats-cta:hover::after,
.beats-cta:focus-visible::after {
  transform: translateY(0);
}

.beats-player-panel {
  margin-top: 1.4rem;
  padding: 1.2rem 0 0.3rem;
}

.beats-player-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(11, 11, 15, 0.56), rgba(42, 31, 79, 0.34));
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.beats-player-wrap iframe {
  display: block;
  border-radius: 10px;
  filter: brightness(0.9) saturate(0.86) contrast(0.96);
}

@keyframes rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .brand-mark {
    font-size: clamp(1.75rem, 5vw, 2.6rem);
  }

  .nav-group {
    gap: 0.8rem 1rem;
  }

  .nav-group a {
    font-size: clamp(1rem, 2.4vw, 1.35rem);
  }

  .home-page main {
    top: -29px;
  }

  .credits {
    margin-top: -2rem;
  }

  .home-page .hero ~ .panel,
  .music-page .hero ~ .panel {
    top: -6px;
  }

  .music-page .hero ~ .panel {
    top: -156px;
  }

  .home-page .credits,
  .music-page .credits {
    margin-top: 0;
  }

  .release-grid {
    max-width: 100%;
  }

  .logo-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .logo-row > .logo-pill {
    grid-column: auto;
    grid-row: auto;
  }

  .logo-pill {
    min-height: 72px;
    padding: 0.45rem 0.5rem;
  }

  .logo-row .marshmello-logo,
  .logo-row .maroon5-logo,
  .logo-row .boiangel-logo,
  .logo-row .interscope-logo,
  .logo-row .universal-logo {
    transform: none;
  }

  .panel h2::before,
  .panel h2::after {
    width: 19%;
  }

  .about-layout {
    min-height: auto;
  }

  .about-silhouette {
    display: none;
  }

  .beats-page .beats-page-panel,
  .beats-page .beats-player-panel {
    top: -80px;
  }

  .beats-page .mailing-list-panel,
  .beats-page .social-footer {
    position: relative;
    top: 70px;
  }

}

@media (max-width: 580px) {
  .top-nav {
    padding: 1rem 0.9rem 0.95rem;
    gap: 0.45rem;
  }

  .brand-mark {
    position: static;
    padding: 0;
  }

  .brand-mark::before,
  .brand-mark::after {
    display: none;
  }

  .nav-group {
    gap: 0.55rem 0.9rem;
  }

  .nav-group a {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 38vh;
    padding-top: clamp(1.5rem, 5.5vh, 3rem);
  }

  .subline {
    margin-top: calc(2.6rem - 50px);
    max-width: 330px;
    line-height: 1.55;
  }

  .beats-page main {
    padding-top: 1.2rem;
  }

  .about-page main {
    padding-top: 1.2rem;
  }

  .mailing-list-form {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .nav-group a {
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .brand-mark {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    padding: 0 0.8rem;
  }

  .brand-mark::before,
  .brand-mark::after {
    width: clamp(45px, 14vw, 110px);
  }
}

@media (min-width: 901px) and (max-width: 1800px) {
  .home-page main,
  .music-page main {
    transform: scale(0.78);
    transform-origin: top center;
    width: calc(100% / 0.78);
    margin-left: auto;
    margin-right: auto;
  }

  .home-page main {
    top: -20px;
  }

  .music-page main {
    top: 10px;
  }

  .home-page .tagline,
  .home-page .roles,
  .home-page .subline {
    position: relative;
    top: 15px;
  }

  .home-page .subline {
    top: 35px;
  }

  .home-page .hairline {
    transform: translateY(15px);
  }

  .home-page .hero ~ .panel {
    top: -19px !important;
  }

  .music-page .hero ~ .panel {
    top: -3px !important;
  }

  .beats-page .beats-page-panel,
  .beats-page .beats-player-panel {
    top: -80px !important;
  }

  .beats-page .mailing-list-panel,
  .beats-page .social-footer {
    position: relative;
    top: 20px;
  }
}

@media (min-width: 1801px) {
  .home-page .hero ~ .panel {
    top: calc(clamp(-95px, -9vh, -24px) - 120px);
  }
}
