:root {
  color-scheme: dark;
  --bg: #060b10;
  --bg-2: #0a121a;
  --ink: #f6eddc;
  --muted: rgba(246, 237, 220, 0.66);
  --muted-2: rgba(246, 237, 220, 0.42);
  --line: rgba(246, 237, 220, 0.22);
  --blue: #0f2435;
  --blue-soft: #193247;
  --postit: #81866f;
  --postit-light: #a5a88b;
  --pen: #071e7a;
  --danger: #f3ddd2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Gaegu", "Bradley Hand", cursive;
  --font-note: "Gaegu", "Caveat", cursive;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(41, 78, 108, 0.45), transparent 35vw),
    radial-gradient(circle at 78% 12%, rgba(24, 42, 56, 0.55), transparent 32vw),
    linear-gradient(180deg, #05080c 0%, var(--bg) 48%, #04070b 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 42rem);
  background-size: 34px 34px, 34px 34px, auto;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.72));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.58) 100%);
  mix-blend-mode: multiply;
}

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

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

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

button {
  font: inherit;
}

::selection {
  background: rgba(246, 237, 220, 0.18);
  color: #fff;
}

#grain {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  opacity: 0.17;
  mix-blend-mode: soft-light;
}

.page-glow {
  position: fixed;
  inset: auto auto 8% -8%;
  width: 42vw;
  height: 42vw;
  z-index: -2;
  border-radius: 999px;
  background: rgba(50, 94, 126, 0.25);
  filter: blur(90px);
  pointer-events: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 100;
  pointer-events: none;
  border: 1px solid rgba(246, 237, 220, 0.8);
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, opacity 180ms ease, background 180ms ease;
  mix-blend-mode: difference;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(246, 237, 220, 0.36);
  background: rgba(246, 237, 220, 0.08);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(31, 59, 81, 0.48), transparent 30rem),
    #04070b;
  transition: opacity 550ms ease, visibility 550ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.loader strong {
  font-family: var(--font-hand);
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  text-shadow: 0 0 28px rgba(246, 237, 220, 0.18);
  transform: rotate(-3deg);
}

.loader__line {
  width: min(340px, 72vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(246, 237, 220, 0.16);
  overflow: hidden;
}

.loader__line i {
  display: block;
  width: 55%;
  height: 100%;
  background: var(--ink);
  border-radius: inherit;
  animation: loadLine 900ms cubic-bezier(.7, 0, .2, 1) infinite alternate;
}

@keyframes loadLine {
  from { transform: translateX(-80%); }
  to { transform: translateX(175%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 18px clamp(18px, 4vw, 70px);
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 13, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(246, 237, 220, 0.08);
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: var(--font-hand);
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: 0.01em;
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(246, 237, 220, 0.1));
}

.brand span::after {
  content: "";
  display: block;
  width: 108%;
  height: 3px;
  margin-top: 4px;
  background: currentColor;
  transform: rotate(-1deg);
  opacity: 0.84;
}

.brand em {
  margin-left: 5px;
  color: var(--muted-2);
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 52px);
}

.main-nav a {
  position: relative;
  color: rgba(246, 237, 220, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%) rotate(-2deg);
  transition: width 200ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff8ec;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 120%;
}

.micro-cta {
  justify-self: end;
  min-width: 150px;
  font-family: var(--font-hand);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 0.78;
  text-align: center;
  transform: rotate(-5deg);
  color: rgba(246, 237, 220, 0.86);
}

.micro-cta::after {
  content: "";
  display: block;
  width: 26px;
  height: 19px;
  margin: 1px auto 0;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) skew(7deg);
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.section {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 42px) clamp(18px, 5vw, 92px) 64px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.035), transparent 42%),
    radial-gradient(circle at 28% 51%, rgba(69, 110, 143, 0.42), transparent 34rem),
    radial-gradient(circle at 70% 44%, rgba(32, 56, 75, 0.75), transparent 40rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 28%, rgba(0, 0, 0, 0.4));
}

.hero__texture::before,
.hero__texture::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.hero__texture::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 11px);
  filter: blur(0.25px);
  transform: scale(1.03);
}

.hero__texture::after {
  background:
    radial-gradient(circle at 12% 40%, rgba(255,255,255,0.07), transparent 2px),
    radial-gradient(circle at 52% 16%, rgba(255,255,255,0.06), transparent 1px),
    radial-gradient(circle at 81% 50%, rgba(255,255,255,0.08), transparent 1.5px);
  background-size: 310px 240px, 250px 230px, 400px 350px;
}

.hero__smudge {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(18px);
}

.hero__smudge--left {
  left: -8rem;
  bottom: 10vh;
  width: 22rem;
  height: 18rem;
  background: rgba(52, 83, 112, 0.4);
  border-radius: 46% 54% 64% 36%;
}

.hero__smudge--right {
  right: -7rem;
  top: 26vh;
  width: 20rem;
  height: 24rem;
  background: rgba(17, 38, 55, 0.9);
  border-radius: 58% 42% 48% 52%;
}

.hero__content {
  width: min(1480px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 6vw, 110px);
}

.hero__copy {
  position: relative;
  padding-left: clamp(0px, 2vw, 24px);
}

.eyebrow,
.overline {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 33px;
  height: 2px;
  background: var(--ink);
  transform: rotate(-3deg);
  opacity: 0.78;
}

.artist-title {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-family: var(--font-hand);
  font-size: clamp(6.4rem, 14vw, 15.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.68;
  transform: rotate(-3.4deg);
  text-shadow: 0 0 26px rgba(246, 237, 220, 0.18);
}

.artist-title::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -5%;
  bottom: -10px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.88;
  transform: rotate(-1.6deg);
  box-shadow: 0 16px 0 -13px currentColor;
}

.artist-title::before {
  content: "×";
  position: absolute;
  right: -54px;
  bottom: 6px;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  opacity: 0.9;
  transform: rotate(14deg);
}

.ep-title {
  margin: 24px 0 0;
  max-width: 760px;
  font-family: var(--font-note);
  font-size: clamp(3.6rem, 7vw, 8.8rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.04em;
  transform: rotate(-2deg);
}

.ep-title span {
  position: relative;
  display: block;
}

.ep-title span:last-child {
  padding-left: clamp(40px, 7vw, 120px);
}

.ep-title span:last-child::after {
  content: "";
  position: absolute;
  left: clamp(40px, 7vw, 120px);
  bottom: -8px;
  width: 74%;
  height: 5px;
  background: var(--ink);
  opacity: 0.78;
  transform: rotate(-2deg);
  border-radius: 999px;
}

.hero__lead {
  max-width: 430px;
  margin: 48px 0 0;
  color: rgba(246, 237, 220, 0.82);
  font-family: var(--font-note);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
}

.hero__lead mark {
  display: inline-block;
  margin-left: 2px;
  padding: 0 8px 2px;
  color: #fff6e8;
  background: transparent;
  border: 1.5px solid rgba(246, 237, 220, 0.85);
  border-radius: 999px;
  transform: rotate(-4deg);
}

.hero__available {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 36px 0 18px;
  font-family: var(--font-note);
  font-size: 1.42rem;
  text-transform: lowercase;
}

.hero__available span {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.hero__available i {
  width: 42px;
  height: 1.5px;
  background: var(--ink);
  transform: rotate(-1deg);
  position: relative;
}

.hero__available i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 150px));
  gap: 14px;
}

.platform {
  position: relative;
  min-height: 62px;
  padding: 14px 15px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(246, 237, 220, 0.55);
  background: rgba(2, 5, 8, 0.26);
  clip-path: polygon(2% 0, 100% 3%, 98% 100%, 0 96%);
  box-shadow: inset 0 0 0 1px rgba(246, 237, 220, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  overflow: hidden;
}

.platform::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(246, 237, 220, 0.16);
  transform: rotate(-1deg);
  pointer-events: none;
}

.platform::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(246, 237, 220, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.platform:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  background: rgba(246, 237, 220, 0.09);
  border-color: rgba(246, 237, 220, 0.78);
}

.platform:hover::after {
  transform: translateX(120%);
}

.platform span {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform small {
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.cover-card {
  position: relative;
  width: min(470px, 78vw);
  margin: 0;
  transform: rotate(-10deg) translateY(-10px);
  filter: drop-shadow(38px 48px 45px rgba(0, 0, 0, 0.58));
  animation: floatCard 6.2s ease-in-out infinite;
}

.cover-card img {
  width: 100%;
  border: 1px solid rgba(246, 237, 220, 0.12);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tape {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 38px;
  background:
    linear-gradient(90deg, rgba(245, 236, 211, 0.26), rgba(245, 236, 211, 0.1)),
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(255, 255, 255, 0.1) 6px 7px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  opacity: 0.82;
}

.tape--one {
  top: -18px;
  left: 26px;
  transform: rotate(11deg);
}

.tape--two {
  right: 20px;
  bottom: -16px;
  transform: rotate(-13deg);
}

@keyframes floatCard {
  0%, 100% { transform: rotate(-10deg) translateY(-10px); }
  50% { transform: rotate(-8deg) translateY(8px); }
}

.floating-postit {
  position: absolute;
  right: clamp(-14px, 2vw, 30px);
  top: 72px;
  width: clamp(190px, 19vw, 300px);
  min-height: 238px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 34px 20px 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.17), transparent 44%),
    linear-gradient(160deg, var(--postit-light), var(--postit) 65%, #707561);
  color: var(--pen);
  box-shadow: 23px 32px 38px rgba(0, 0, 0, 0.42);
  transform: rotate(8deg);
  clip-path: polygon(0 5%, 96% 0, 100% 94%, 8% 100%);
  opacity: 0.96;
}

.floating-postit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.13), transparent 40%);
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.postit-tape {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 96px;
  height: 34px;
  transform: translateX(-50%) rotate(-8deg);
  background: rgba(235, 232, 214, 0.25);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
}

.floating-postit svg {
  position: relative;
  width: 125px;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 7px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.93;
}

.floating-postit strong {
  position: relative;
  display: block;
  font-family: var(--font-note);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 700;
  line-height: 0.8;
  text-align: center;
  letter-spacing: -0.02em;
}

.wall-note {
  position: absolute;
  color: rgba(246, 237, 220, 0.55);
  font-family: var(--font-hand);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 0.88;
  transform: rotate(-11deg);
  text-shadow: 0 0 14px rgba(246, 237, 220, 0.08);
}

.wall-note::after {
  content: "";
  display: block;
  width: 110%;
  height: 2px;
  margin-top: 5px;
  background: currentColor;
  transform: rotate(-2deg);
  opacity: 0.7;
}

.wall-note--one {
  right: 0;
  bottom: 88px;
}

.wall-note--two {
  left: 8px;
  bottom: 140px;
  opacity: 0.5;
  transform: rotate(9deg);
}

.doodle {
  position: absolute;
  color: rgba(246, 237, 220, 0.48);
  font-family: var(--font-hand);
  pointer-events: none;
}

.doodle--heart {
  right: 12%;
  bottom: 52px;
  font-size: 3.6rem;
  transform: rotate(-12deg);
}

.doodle--x {
  left: 13%;
  top: 108px;
  font-size: 4.8rem;
  transform: rotate(10deg);
}

.scroll-cue {
  position: absolute;
  right: clamp(14px, 3vw, 54px);
  bottom: 54px;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: rgba(246, 237, 220, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 76px;
  background: currentColor;
  opacity: 0.82;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(246, 237, 220, 0.08);
  background: rgba(3, 7, 11, 0.72);
  backdrop-filter: blur(16px);
}

.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 0;
  animation: marquee 26s linear infinite;
  color: rgba(246, 237, 220, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.marquee span {
  white-space: nowrap;
}

.marquee b {
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 1.8rem;
  line-height: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.discography,
.contact-section {
  padding: clamp(78px, 8vw, 134px) clamp(18px, 5vw, 92px);
  background:
    linear-gradient(180deg, rgba(5, 9, 13, 0.18), rgba(5, 9, 13, 0.92)),
    radial-gradient(circle at 12% 34%, rgba(35, 68, 93, 0.28), transparent 28rem);
}

.section-head {
  width: min(1480px, 100%);
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-head h2,
.bio-copy h2,
.contact-copy h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: var(--font-hand);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 700;
  line-height: 0.8;
  transform: rotate(-2.2deg);
}

.section-head h2::after,
.bio-copy h2::after,
.contact-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 112%;
  height: 3px;
  background: currentColor;
  opacity: 0.72;
  transform: rotate(-1.6deg);
}

.section-head .overline,
.contact-copy .overline,
.bio-copy .overline {
  margin-bottom: 14px;
}

.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 237, 220, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.section-head a:hover {
  color: #fff;
  transform: translateX(4px);
}

.release-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: clamp(18px, 2.1vw, 34px);
  align-items: start;
}

.release-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0);
  transition: transform 180ms ease, filter 220ms ease;
}

.release-card:hover {
  filter: brightness(1.12);
}

.release-card a {
  display: block;
}

.release-card img,
.concept-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(246, 237, 220, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  clip-path: polygon(1.5% 0, 100% 1.2%, 98.5% 99%, 0 97.4%);
}

.release-card--image {
  position: relative;
}

.new-label {
  position: absolute;
  z-index: 2;
  left: -12px;
  top: 18px;
  padding: 8px 9px;
  background: #d4c4a5;
  color: #0e1720;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(6deg);
  box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.22);
}

.release-card__meta {
  padding-top: 16px;
}

.release-card__meta h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.release-card__meta p {
  margin: 7px 0 0;
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concept-cover {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111921;
}

.concept-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 43%, transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.12), transparent 25%),
    radial-gradient(circle at 30% 80%, rgba(17, 40, 62, 0.8), transparent 42%);
  opacity: 0.86;
}

.concept-cover::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 237, 220, 0.12);
  transform: rotate(2deg);
}

.concept-cover span,
.concept-cover strong,
.concept-cover em,
.concept-cover .tear {
  position: relative;
  z-index: 2;
}

.concept-2359 .concept-cover {
  background:
    linear-gradient(140deg, #121b28, #071019 58%, #152333),
    radial-gradient(circle, rgba(255,255,255,.14), transparent);
}

.concept-2359 .concept-cover span {
  font-family: var(--font-hand);
  font-size: clamp(3.8rem, 6vw, 7rem);
  transform: rotate(-7deg);
}

.concept-corona .concept-cover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(140deg, #434343, #171717 58%, #080a0c);
}

.concept-corona .crown {
  position: absolute;
  top: 18%;
  font-family: var(--font-hand);
  font-size: 5rem;
  color: rgba(246, 237, 220, 0.72);
  transform: rotate(-10deg);
}

.concept-corona strong,
.concept-llames strong,
.concept-llorar strong {
  align-self: end;
  justify-self: start;
  margin: 0 0 26px 24px;
  font-family: var(--font-note);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 700;
  line-height: 0.84;
  text-transform: lowercase;
  transform: rotate(-5deg);
}

.concept-corona em {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-family: var(--font-hand);
  font-size: 2.4rem;
  font-style: normal;
}

.concept-llames .concept-cover {
  background:
    radial-gradient(circle at 78% 32%, rgba(246, 237, 220, 0.18), transparent 10%),
    radial-gradient(circle at 64% 50%, rgba(246, 237, 220, 0.12), transparent 8%),
    linear-gradient(140deg, #06100f, #16241d 45%, #0a0f11);
}

.concept-llames strong {
  align-self: start;
  margin-top: 22px;
}

.concept-llames .concept-cover span {
  position: absolute;
  left: 28px;
  bottom: 35px;
  font-family: var(--font-hand);
  font-size: 4.2rem;
}

.concept-llorar .concept-cover {
  background:
    radial-gradient(circle at 70% 22%, rgba(246, 237, 220, 0.24), transparent 16%),
    linear-gradient(140deg, #424447, #111820 52%, #04070b);
}

.concept-llorar .concept-cover::before {
  background:
    linear-gradient(100deg, rgba(255,255,255,.22), transparent 36%),
    radial-gradient(ellipse at 72% 24%, rgba(255,255,255,.33), transparent 16%);
}

.concept-llorar strong {
  margin-bottom: 22px;
}

.tear {
  position: absolute;
  right: 30%;
  top: 47%;
  width: 16px;
  height: 32px;
  background: rgba(246, 237, 220, 0.76);
  border-radius: 999px 999px 999px 0;
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(246, 237, 220, 0.14);
}

.bio-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(280px, .96fr) minmax(320px, .8fr) minmax(250px, .46fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(70px, 9vw, 148px) clamp(18px, 5vw, 92px);
  border-block: 1px solid rgba(246, 237, 220, 0.08);
  background:
    linear-gradient(90deg, rgba(13, 26, 37, 0.92), rgba(6, 11, 16, 0.76) 45%, rgba(6, 11, 16, 0.94)),
    radial-gradient(circle at 18% 42%, rgba(85, 132, 165, 0.3), transparent 30rem);
  overflow: hidden;
}

.bio-photo {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 237, 220, 0.08);
  background:
    radial-gradient(circle at 32% 20%, rgba(132, 176, 206, 0.38), transparent 20rem),
    radial-gradient(circle at 44% 54%, rgba(2, 6, 9, 0.05), rgba(2, 6, 9, 0.88) 46%),
    linear-gradient(140deg, rgba(19, 38, 52, 0.85), rgba(2, 5, 8, 0.92));
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 2%, 98% 100%, 2% 98%);
  overflow: hidden;
}

.bio-photo::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 46% 58%, rgba(255, 255, 255, 0.12), transparent 4px),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.08), transparent 2px),
    repeating-linear-gradient(120deg, transparent 0 18px, rgba(255, 255, 255, 0.03) 18px 19px);
  opacity: 0.42;
}

.portrait {
  position: relative;
  width: min(330px, 70vw);
  height: 460px;
  transform: translateY(28px) rotate(-2deg);
}

.portrait__head {
  position: absolute;
  left: 118px;
  top: 48px;
  width: 125px;
  height: 145px;
  border-radius: 46% 50% 45% 42%;
  background:
    radial-gradient(circle at 36% 8%, #1f3948 0 12%, #030609 15%),
    linear-gradient(150deg, #0b1014, #010204 72%);
  box-shadow:
    -40px 16px 0 -30px rgba(246, 237, 220, 0.08),
    24px 42px 50px rgba(0, 0, 0, 0.62);
  transform: rotate(13deg);
}

.portrait__head::before {
  content: "";
  position: absolute;
  left: -36px;
  top: -21px;
  width: 102px;
  height: 48px;
  border-radius: 55% 45% 40% 60%;
  background:
    radial-gradient(circle at 18% 45%, #10181d 0 9px, transparent 10px),
    radial-gradient(circle at 36% 27%, #0b1115 0 12px, transparent 13px),
    radial-gradient(circle at 57% 32%, #121b21 0 14px, transparent 15px),
    radial-gradient(circle at 78% 44%, #0d1419 0 12px, transparent 13px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .55));
}

.portrait__head::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: 18px;
  width: 42px;
  height: 64px;
  border-radius: 0 55% 44% 0;
  background: linear-gradient(90deg, #05080b, #000);
  transform: rotate(-10deg);
}

.portrait__body {
  position: absolute;
  left: 42px;
  top: 180px;
  width: 270px;
  height: 310px;
  border-radius: 44% 60% 0 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(34, 66, 88, 0.38), transparent 20%),
    linear-gradient(155deg, #071018 0%, #020406 58%, #010203 100%);
  box-shadow: 40px 50px 70px rgba(0,0,0,0.72);
  transform: rotate(-6deg);
}

.portrait__chain {
  position: absolute;
  left: 130px;
  top: 212px;
  width: 90px;
  height: 70px;
  border: 1px solid rgba(246, 237, 220, 0.34);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  transform: rotate(-8deg);
}

.bio-doodle {
  position: absolute;
  color: rgba(246, 237, 220, 0.46);
  font-family: var(--font-hand);
  pointer-events: none;
}

.bio-doodle--crown {
  top: 18%;
  left: 44%;
  font-size: 5rem;
  transform: rotate(18deg);
}

.bio-doodle--heart {
  left: 16%;
  bottom: 24%;
  font-size: 4rem;
  transform: rotate(-12deg);
}

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

.bio-copy p:not(.overline),
.contact-copy p {
  color: rgba(246, 237, 220, 0.76);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.75;
}

.bio-copy blockquote {
  margin: 28px 0 28px;
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 0.9;
  transform: rotate(-2deg);
}

.ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 176px;
  padding: 16px 24px;
  border: 1px solid rgba(246, 237, 220, 0.58);
  background: rgba(2, 5, 8, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  clip-path: polygon(2% 0, 100% 4%, 98% 100%, 0 96%);
  transition: transform 180ms ease, background 180ms ease;
}

.ghost-button:hover {
  transform: translateY(-4px) rotate(-1deg);
  background: rgba(246, 237, 220, 0.09);
}

.studio-polaroid {
  position: relative;
  min-height: 330px;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 14px;
  background:
    linear-gradient(150deg, rgba(246, 237, 220, 0.72), rgba(246, 237, 220, 0.32)),
    linear-gradient(#222, #111);
  clip-path: polygon(6% 0, 100% 8%, 94% 92%, 0 100%);
  transform: rotate(5deg);
  box-shadow: 26px 34px 55px rgba(0, 0, 0, 0.48);
}

.studio-polaroid::before {
  content: "";
  position: absolute;
  inset: 18px 18px 82px;
  background:
    radial-gradient(circle at 66% 42%, rgba(246, 237, 220, 0.18), transparent 9%),
    linear-gradient(130deg, #0a1016, #05080b 70%);
  clip-path: polygon(0 2%, 100% 0, 97% 100%, 3% 96%);
}

.studio-screen {
  position: absolute;
  inset: 54px 38px auto;
  height: 120px;
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 18px;
  border: 1px solid rgba(246, 237, 220, 0.16);
  background: rgba(6, 10, 14, 0.9);
  z-index: 2;
}

.studio-screen span {
  display: block;
  height: 10px;
  background: rgba(246, 237, 220, 0.28);
  border-radius: 999px;
}

.studio-screen span:nth-child(2) { width: 72%; }
.studio-screen span:nth-child(3) { width: 48%; }

.studio-polaroid p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #071018;
  font-family: var(--font-hand);
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.9;
}

.paper-rip {
  position: absolute;
  left: 44px;
  top: -18px;
  width: 120px;
  height: 38px;
  background: rgba(246, 237, 220, 0.46);
  transform: rotate(-9deg);
  z-index: 3;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(108px, 1fr));
  border: 1px solid rgba(246, 237, 220, 0.1);
  background: rgba(2, 5, 8, 0.22);
  backdrop-filter: blur(10px);
}

.social-tile {
  position: relative;
  min-height: 180px;
  padding: 28px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: rgba(246, 237, 220, 0.78);
  border-right: 1px solid rgba(246, 237, 220, 0.1);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-tile:last-child {
  border-right: 0;
}

.social-tile svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(246, 237, 220, 0.13));
}

.social-tile span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-tile:hover {
  z-index: 2;
  color: #fff;
  background: rgba(246, 237, 220, 0.08);
  transform: translateY(-6px);
}

.site-footer {
  min-height: 82px;
  padding: 24px clamp(18px, 5vw, 92px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(246, 237, 220, 0.52);
  border-top: 1px solid rgba(246, 237, 220, 0.08);
  background: #03070b;
}

.footer-logo,
.site-footer p {
  margin: 0;
  font-family: var(--font-hand);
  font-size: 1.6rem;
  line-height: 1;
}

.site-footer p {
  justify-self: end;
}

.site-footer small {
  text-align: center;
  font-size: 0.75rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  padding: 12px 18px;
  border: 1px solid rgba(246, 237, 220, 0.22);
  border-radius: 999px;
  background: rgba(5, 9, 13, 0.88);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translate(-50%, 130%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--delay, 0s);
}

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

@media (max-width: 1180px) {
  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  .hero__copy {
    max-width: 900px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .release-grid {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

  .bio-section {
    grid-template-columns: 0.9fr 1fr;
  }

  .studio-polaroid {
    grid-column: 2;
    max-width: 360px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .brand em,
  .micro-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(246, 237, 220, 0.1);
    border-radius: 18px;
    background: rgba(5, 9, 13, 0.92);
    backdrop-filter: blur(20px);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(246, 237, 220, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    padding-top: calc(var(--header-height) + 24px);
  }

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

  .floating-postit {
    top: 24px;
    right: 0;
  }

  .wall-note--two {
    display: none;
  }

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

  .bio-section {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    min-height: 440px;
  }

  .studio-polaroid {
    grid-column: auto;
    max-width: 420px;
  }

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

  .social-tile:nth-child(2n) {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer small {
    text-align: left;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .hero,
  .discography,
  .bio-section,
  .contact-section {
    padding-inline: 16px;
  }

  .artist-title::before {
    right: -28px;
  }

  .hero__lead {
    margin-top: 34px;
  }

  .platforms {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 390px;
    margin-top: 30px;
  }

  .cover-card {
    width: min(315px, 72vw);
    transform: rotate(-8deg);
  }

  .floating-postit {
    width: 170px;
    min-height: 170px;
    padding: 24px 12px 15px;
    right: -12px;
    top: 16px;
  }

  .floating-postit svg {
    width: 82px;
    stroke-width: 8px;
  }

  .floating-postit strong {
    font-size: 1.75rem;
  }

  .wall-note--one,
  .doodle--heart,
  .doodle--x,
  .scroll-cue {
    display: none;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .release-card {
    max-width: 360px;
  }

  .bio-photo {
    min-height: 370px;
  }

  .portrait {
    transform: translateY(56px) scale(.78) rotate(-2deg);
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-tile,
  .social-tile:nth-child(2n) {
    min-height: 116px;
    grid-template-columns: auto 1fr;
    justify-content: start;
    place-items: center start;
    padding-inline: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 237, 220, 0.1);
  }

  .social-tile:last-child {
    border-bottom: 0;
  }
}

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

  .loader {
    display: none;
  }
}
