:root {
  --ink: #060708;
  --ink-soft: #101214;
  --paper: #f3efe6;
  --paper-dim: #c8bead;
  --red: #78101a;
  --red-bright: #b71b29;
  --gold: #c69d58;
  --gold-bright: #efd08b;
  --gold-dim: #957344;
  --blue-black: #071017;
  --line: rgba(198, 157, 88, 0.28);
  --max: 1360px;
  --pad: clamp(1.15rem, 4vw, 4.5rem);
  --display: "Arial Narrow", "Aptos Narrow", "Franklin Gothic Condensed", "Roboto Condensed", sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 8% 10%, rgba(120, 16, 27, .24), transparent 34%),
    radial-gradient(ellipse at 90% 3%, rgba(198, 157, 88, .13), transparent 28%),
    var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .8rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 7, 8, .9);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.wordmark { display: inline-flex; align-items: center; gap: .8rem; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--gold);
  font: 900 1.08rem/1 var(--display);
  letter-spacing: -.04em;
}
.wordmark-name {
  font: 900 1rem/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .09em;
}

.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.6vw, 2.8rem); }
.site-nav a {
  position: relative;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 2px;
  background: var(--gold-bright);
  transition: right .22s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.nav-toggle { display: none; border: 0; background: none; cursor: pointer; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .88fr);
  grid-template-rows: 1fr auto;
  gap: 2.5rem clamp(2rem, 7vw, 8rem);
  padding: clamp(8rem, 13vh, 11rem) var(--pad) 0;
  isolation: isolate;
  background:
    url("./assets/watercolor-wash.svg") center / cover no-repeat,
    radial-gradient(ellipse at 4% 58%, rgba(124, 10, 24, .46) 0, rgba(124, 10, 24, .18) 23%, transparent 48%),
    radial-gradient(ellipse at 82% 20%, rgba(198, 157, 88, .16) 0, transparent 34%),
    linear-gradient(145deg, #060708 0%, #0d0b0d 48%, #080d11 100%);
  background-blend-mode: screen, screen, screen, normal;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(240,237,229,.06) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
}

.hero-copy { align-self: center; max-width: 760px; padding-bottom: 3rem; }
.eyebrow, .section-index, .status, .release-date, .card-meta, .platforms-label {
  margin: 0;
  font-size: .78rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { display: flex; gap: 1.4rem; color: var(--paper-dim); }
.eyebrow span + span::before { content: "/"; margin-right: 1.4rem; color: var(--red-bright); }

h1, h2, h3 { margin: 0; font-family: var(--display); text-transform: uppercase; }
h1 {
  margin-top: 1.1rem;
  font-size: clamp(5.2rem, 13.5vw, 13.8rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.085em;
}
h1 span { display: block; }
h1 span:first-child { color: var(--paper); }
h1 span:last-child { color: var(--gold-bright); transform: translateX(-.04em); }
.hero-statement {
  max-width: 670px;
  margin: clamp(2.2rem, 4vw, 3.5rem) 0 .4rem;
  font: 800 clamp(1.35rem, 2.5vw, 2.35rem)/1.15 var(--display);
  text-transform: uppercase;
  letter-spacing: -.025em;
}
.hero-intro { max-width: 550px; margin: 0; color: var(--paper-dim); font-size: clamp(1rem, 1.3vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .78rem 1.1rem;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button-primary:hover, .button-primary:focus-visible { background: var(--gold-bright); border-color: var(--gold-bright); }
.button-ghost:hover, .button-ghost:focus-visible { color: var(--ink); background: var(--gold-bright); border-color: var(--gold-bright); }
.button-light { color: var(--ink); background: var(--gold-bright); border-color: var(--gold-bright); }
.button-light:hover, .button-light:focus-visible { color: var(--gold-bright); background: var(--ink); border-color: var(--gold-bright); }

.hero-art { width: min(100%, 570px); align-self: center; justify-self: center; margin: 0; padding-bottom: 3rem; }
.art-frame { position: relative; border: 1px solid var(--line); padding: .75rem; background: rgba(6, 7, 8, .5); }
.art-frame::before, .art-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 42%;
  height: 18px;
  background: rgba(198, 157, 88, .7);
  filter: drop-shadow(0 3px 2px rgba(0,0,0,.4));
}
.art-frame::before { top: -7px; left: -3%; transform: rotate(-3deg); }
.art-frame::after { right: -4%; bottom: -8px; transform: rotate(2deg); }
.art-frame img { width: 100%; height: auto; object-fit: contain; }
.hero-art figcaption {
  margin-top: 1rem;
  color: var(--paper-dim);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: right;
  text-transform: uppercase;
}

.platforms {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(4, auto);
  align-items: center;
  gap: .8rem clamp(1rem, 3vw, 3rem);
  min-height: 82px;
  border-top: 1px solid var(--line);
}
.platforms-label { color: var(--paper-dim); }
.platforms a { font-size: .88rem; font-weight: 700; }
.platforms a:hover, .platforms a:focus-visible, .text-link:hover, .text-link:focus-visible { color: var(--gold-bright); }

.wash { position: absolute; z-index: -1; pointer-events: none; filter: blur(30px); mix-blend-mode: screen; }
.wash-red {
  background:
    radial-gradient(circle at 35% 40%, rgba(135, 11, 26, .68) 0 13%, transparent 36%),
    radial-gradient(circle at 65% 55%, rgba(198, 157, 88, .25) 0 18%, transparent 53%);
}
.wash-hero { width: min(58vw, 860px); height: min(58vw, 860px); left: -22vw; top: 12%; transform: rotate(-15deg); }

.release-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 9rem);
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  background:
    url("./assets/watercolor-wash.svg") right center / cover no-repeat,
    radial-gradient(ellipse at 8% 54%, rgba(120, 10, 25, .58) 0, rgba(120, 10, 25, .2) 24%, transparent 48%),
    radial-gradient(ellipse at 92% 13%, rgba(198, 157, 88, .21) 0, transparent 35%),
    radial-gradient(ellipse at 58% 100%, rgba(21, 53, 68, .32) 0, transparent 44%),
    linear-gradient(135deg, #07080a, #111013 56%, #080b0e);
  background-blend-mode: screen, screen, screen, screen, normal;
}
.release-cover { position: relative; width: min(100%, 570px); justify-self: center; transform: rotate(-.7deg); box-shadow: 20px 24px 0 rgba(198, 157, 88, .09); }
.release-cover img { width: 100%; height: auto; object-fit: contain; }
.tape { position: absolute; z-index: 3; width: 29%; height: 32px; background: rgba(198, 157, 88, .72); }
.tape-top { top: -13px; left: 35%; transform: rotate(2deg); }
.release-copy { max-width: 720px; }
.release-copy .section-index { color: var(--gold); }
.release-date { margin: clamp(2rem, 5vw, 5rem) 0 .7rem; color: var(--gold); }
.release-copy h2, .upcoming h2 {
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.075em;
}
.release-lead { margin: clamp(2.2rem, 4vw, 4rem) 0 .7rem; color: var(--gold-bright); font: 800 clamp(1.55rem, 3vw, 3rem)/1.05 var(--display); text-transform: uppercase; }
.release-copy > p:not([class]) { max-width: 630px; color: var(--paper-dim); font-size: 1.05rem; }
.text-link {
  display: inline-flex;
  gap: .8rem;
  margin-top: 1.2rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.album, .singles, .bio { padding: clamp(5.5rem, 11vw, 10rem) var(--pad); }
.album, .singles, .bio { position: relative; overflow: hidden; isolation: isolate; }
.album {
  background:
    url("./assets/watercolor-wash.svg") center top / cover no-repeat,
    radial-gradient(ellipse at 84% 23%, rgba(198, 157, 88, .16) 0, transparent 36%),
    radial-gradient(ellipse at 7% 88%, rgba(112, 10, 22, .36) 0, transparent 40%),
    linear-gradient(145deg, #080a0c 0%, #111214 55%, #08090a 100%);
  background-blend-mode: screen, screen, screen, normal;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.section-index { color: var(--gold); }
.status { margin-bottom: 1rem; color: var(--gold); }
.section-heading h2, .bio h2, .merch h2, .arcade-teaser h2 {
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.065em;
}

.album-grid { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 7vw, 8rem); align-items: start; }
.album-cover { position: sticky; top: 110px; width: min(100%, 590px); }
.album-cover img { width: 100%; height: auto; object-fit: contain; }
.album-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.image-link { position: relative; display: block; padding: .55rem; border: 1px solid var(--line); background: rgba(6, 7, 8, .68); transition: border-color .2s ease, transform .2s ease; }
.image-link:hover, .image-link:focus-visible { border-color: var(--gold-bright); transform: translateY(-2px); }
.image-link-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: .55rem;
  padding: .58rem .72rem;
  color: var(--gold-bright);
  background: rgba(198, 157, 88, .12);
  border-top: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tracklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tracklist li {
  border-bottom: 1px solid var(--line);
}
.tracklist a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: .75rem 0;
  font: 800 clamp(1.15rem, 2.2vw, 2.05rem)/1.05 var(--display);
  text-transform: uppercase;
  transition: padding-left .2s ease, color .2s ease;
}
.tracklist a:hover, .tracklist a:focus-visible { padding-left: .7rem; color: var(--gold-bright); }
.track-number { color: var(--gold-dim); font: 700 .78rem/1 var(--sans); letter-spacing: .12em; }
.track-action { color: var(--gold); font: 800 .7rem/1 var(--sans); letter-spacing: .11em; white-space: nowrap; }

.singles {
  border-top: 1px solid var(--line);
  background:
    url("./assets/watercolor-wash.svg") left center / cover no-repeat,
    radial-gradient(ellipse at 15% 16%, rgba(198, 157, 88, .13) 0, transparent 32%),
    radial-gradient(ellipse at 86% 72%, rgba(111, 10, 22, .42) 0, transparent 40%),
    linear-gradient(155deg, #090a0b, #111012 52%, #070a0c);
  background-blend-mode: screen, screen, screen, normal;
}
.section-heading.compact { align-items: end; }
.section-heading.compact h2 { font-size: clamp(4.5rem, 12vw, 11rem); }
.release-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 2.4rem); }
.release-card { min-width: 0; }
.release-card-link { display: block; }
.card-image { position: relative; padding: .5rem; overflow: visible; border: 1px solid var(--line); background: rgba(6, 7, 8, .68); transition: border-color .2s ease, transform .2s ease; }
.card-image img { width: 100%; height: auto; object-fit: contain; }
.release-card-link:hover .card-image, .release-card-link:focus-visible .card-image { border-color: var(--gold-bright); transform: translateY(-2px); }
.release-card-link:hover h3, .release-card-link:focus-visible h3 { color: var(--gold-bright); }
.card-meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; color: var(--paper-dim); }
.release-card h3 { margin-top: .45rem; font-size: clamp(1.45rem, 2.8vw, 2.7rem); line-height: 1.02; letter-spacing: -.035em; transition: color .2s ease; }
.button-soundcloud { width: 100%; margin-top: 1rem; color: var(--gold-bright); border-color: var(--gold); }
.button-soundcloud:hover, .button-soundcloud:focus-visible { color: var(--ink); background: var(--gold-bright); border-color: var(--gold-bright); }

.youtube-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    url("./assets/watercolor-wash.svg") right center / cover no-repeat,
    radial-gradient(ellipse at 8% 18%, rgba(122, 10, 23, .48) 0, transparent 38%),
    radial-gradient(ellipse at 88% 84%, rgba(198, 157, 88, .2) 0, transparent 35%),
    linear-gradient(145deg, #07080a, #101113 54%, #080b0d);
  background-blend-mode: screen, screen, screen, normal;
}
.youtube-copy { position: relative; z-index: 2; max-width: 560px; }
.youtube-copy h2 {
  margin: 1.4rem 0 2rem;
  font-size: clamp(3.8rem, 7.8vw, 8.4rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.065em;
}
.youtube-copy h2 span { color: var(--gold-bright); }
.youtube-copy > p:not([class]) { margin: 0 0 1.8rem; color: var(--paper-dim); font-size: 1.08rem; }
.youtube-player {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(.65rem, 1.5vw, 1rem);
  border: 1px solid var(--gold);
  background: rgba(4, 5, 6, .88);
  box-shadow: clamp(10px, 2vw, 22px) clamp(12px, 2.2vw, 26px) 0 rgba(198, 157, 88, .1);
}
.youtube-player::before {
  content: "";
  position: absolute;
  inset: -10px 8% auto -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-bright), transparent);
}
.youtube-player-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .2rem .15rem .75rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.youtube-player-bar span:last-child { color: var(--paper-dim); }
.youtube-embed { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.youtube-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.listen-hub {
  position: relative;
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  isolation: isolate;
  background:
    url("./assets/watercolor-wash.svg") left center / cover no-repeat,
    radial-gradient(ellipse at 12% 78%, rgba(198, 157, 88, .18) 0, transparent 38%),
    radial-gradient(ellipse at 91% 20%, rgba(110, 9, 22, .44) 0, transparent 39%),
    linear-gradient(150deg, #07090b, #121012 55%, #070b0d);
  background-blend-mode: screen, screen, screen, normal;
}
.listen-heading {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.listen-heading > div { max-width: 960px; }
.listen-heading h2 {
  margin: 0 0 1.8rem;
  font-size: clamp(3.6rem, 8.5vw, 9rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.065em;
}
.listen-heading h2 span { color: var(--gold-bright); }
.listen-heading > div > p:last-child { max-width: 620px; margin: 0; color: var(--paper-dim); font-size: 1.08rem; }
.streaming-deck {
  position: relative;
  width: min(100%, 1100px);
  margin-left: auto;
  border: 1px solid var(--gold);
  background: rgba(4, 5, 6, .86);
  box-shadow: clamp(12px, 2.2vw, 26px) clamp(14px, 2.5vw, 30px) 0 rgba(198, 157, 88, .09);
}
.streaming-deck::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 7%;
  left: -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold-bright), transparent);
}
.stream-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.stream-tabs button {
  min-height: 62px;
  padding: .9rem 1rem;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--paper-dim);
  background: rgba(12, 14, 16, .82);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.stream-tabs button:last-child { border-right: 0; }
.stream-tabs button:hover, .stream-tabs button:focus-visible { color: var(--gold-bright); }
.stream-tabs button[aria-selected="true"] { color: var(--ink); background: var(--gold-bright); }
.stream-panel { padding: clamp(.8rem, 2.4vw, 1.8rem); }
.stream-panel[hidden] { display: none; }
.stream-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.stream-panel-head strong { color: var(--paper); font: 900 clamp(1.25rem, 2.4vw, 2rem)/1 var(--display); text-transform: uppercase; }
.stream-panel-head a { color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.stream-panel-head a:hover, .stream-panel-head a:focus-visible { color: var(--gold-bright); }
.stream-frame { display: block; width: 100%; border: 0; background: #000; }
.stream-frame-spotify { height: 352px; border-radius: 12px; }
.stream-frame-soundcloud { height: 450px; }
.stream-video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.stream-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.upcoming {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 9rem);
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  background:
    url("./assets/watercolor-wash.svg") center / cover no-repeat,
    radial-gradient(ellipse at 12% 64%, rgba(108, 9, 22, .44) 0, transparent 40%),
    radial-gradient(ellipse at 88% 14%, rgba(198, 157, 88, .2) 0, transparent 34%),
    linear-gradient(145deg, #071017, #0e1216 52%, #09090b);
  background-blend-mode: screen, screen, screen, normal;
  isolation: isolate;
}
.wash-blue {
  background:
    radial-gradient(circle at 35% 45%, rgba(118, 17, 35, .56) 0 15%, transparent 42%),
    radial-gradient(circle at 70% 40%, rgba(198, 157, 88, .28) 0 17%, transparent 48%);
}
.wash-upcoming { width: 820px; height: 680px; left: -200px; bottom: -250px; transform: rotate(15deg); }
.upcoming-copy { max-width: 680px; }
.upcoming h2 { margin-top: 2rem; color: var(--gold-bright); }
.upcoming-copy > p:not([class]) { max-width: 560px; margin: 2.5rem 0 .4rem; font-size: 1.08rem; color: #d2c9bb; }
.upcoming-art { width: min(100%, 570px); justify-self: center; margin: 0; padding: .65rem; border: 1px solid var(--line); background: rgba(6, 7, 8, .55); transform: rotate(.7deg); }
.upcoming-art img { width: 100%; height: auto; object-fit: contain; }

.bio { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 8vw, 9rem); align-items: center; background: url("./assets/watercolor-wash.svg") right center / cover no-repeat, radial-gradient(ellipse at 18% 70%, rgba(198, 157, 88, .15), transparent 36%), radial-gradient(ellipse at 90% 16%, rgba(105, 8, 20, .36), transparent 36%), linear-gradient(135deg, #0a0b0c, #111013 58%, #080a0c); background-blend-mode: screen, screen, screen, normal; }
.bio-art { position: relative; width: min(100%, 550px); justify-self: center; }
.bio-art::after { content: ""; position: absolute; inset: 5% -4% -4% 5%; z-index: -1; border: 1px solid var(--gold); }
.bio-art img { width: 100%; height: auto; object-fit: contain; filter: contrast(1.04); }
.bio h2 { margin: 2.1rem 0 2.8rem; font-size: clamp(3rem, 6.2vw, 6.8rem); }
.bio h2 em { color: var(--gold-bright); font-style: normal; }
.bio-copy > p:not([class]) { max-width: 760px; margin: 0 0 1rem; color: #d2cbc1; font-size: clamp(1rem, 1.3vw, 1.16rem); }

.merch {
  position: relative;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  color: var(--paper);
  background:
    url("./assets/watercolor-wash.svg") left center / cover no-repeat,
    radial-gradient(ellipse at 14% 50%, rgba(117, 10, 23, .56) 0, transparent 42%),
    radial-gradient(ellipse at 82% 12%, rgba(198, 157, 88, .22) 0, transparent 36%),
    linear-gradient(145deg, #08090a, #121012 58%, #080c0e);
  background-blend-mode: screen, screen, screen, normal;
}
.merch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(198,157,88,.05), rgba(0,0,0,.42) 78%);
}
.merch-copy { position: relative; z-index: 2; max-width: 980px; }
.merch-art { position: relative; z-index: 2; width: min(100%, 500px); justify-self: center; margin: 0; padding: .55rem; border: 1px solid var(--line); background: rgba(6, 7, 8, .64); box-shadow: 22px 26px 0 rgba(198, 157, 88, .09); }
.merch-art img { width: 100%; height: auto; object-fit: contain; }
.merch h2 { margin: 1.6rem 0 2rem; }
.merch p:not([class]) { margin-bottom: 1.8rem; font-size: 1.14rem; }
.merch-mark {
  position: absolute;
  right: -5vw;
  bottom: -13vw;
  color: rgba(198,157,88,.12);
  font: 900 clamp(20rem, 55vw, 62rem)/.7 var(--display);
  letter-spacing: -.13em;
  user-select: none;
}

.arcade-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  min-height: 72vh;
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  background:
    linear-gradient(rgba(198, 157, 88, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 157, 88, .06) 1px, transparent 1px),
    url("./assets/watercolor-wash.svg") right center / cover no-repeat,
    radial-gradient(ellipse at 12% 72%, rgba(118, 10, 24, .5), transparent 42%),
    linear-gradient(145deg, #07090b, #11151a 58%, #070708);
  background-size: 32px 32px, 32px 32px, cover, auto, auto;
  background-blend-mode: screen, screen, screen, screen, normal;
  border-top: 1px solid var(--line);
}
.arcade-copy { position: relative; z-index: 2; max-width: 760px; }
.arcade-teaser h2 { margin: 1.6rem 0 2rem; }
.arcade-teaser h2 span { color: var(--gold-bright); }
.arcade-copy > p:not([class]) { max-width: 620px; margin: 0 0 1.8rem; color: var(--paper-dim); font-size: 1.08rem; }
.arcade-console {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  justify-self: center;
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 2px solid var(--gold);
  background: #090b0d;
  box-shadow: 18px 22px 0 rgba(183, 27, 41, .24);
  font-family: "Courier New", monospace;
}
.arcade-screen {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  color: #e8f9f8;
  background: linear-gradient(150deg, rgba(0, 229, 255, .12), transparent 50%), #071017;
  border: 4px solid #232a2f;
  box-shadow: inset 0 0 0 2px #050607;
}
.arcade-screen > span { color: #00e5ff; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.arcade-screen strong { color: #ff3ea5; font-size: clamp(2.35rem, 5.5vw, 5.2rem); line-height: .84; letter-spacing: -.08em; text-shadow: 4px 4px 0 #6e1021; }
.arcade-score { display: flex; justify-content: space-between; gap: 1rem; color: var(--gold-bright); font-size: .82rem; font-weight: 900; }
.arcade-score span:last-child { color: #050607; -webkit-text-stroke: 1px var(--gold); text-shadow: 1px 0 var(--gold), -1px 0 var(--gold), 0 1px var(--gold), 0 -1px var(--gold); }
.arcade-console > p { margin: 1rem 0 0; color: var(--paper-dim); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-align: center; }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  min-height: 82vh;
  padding: clamp(5.5rem, 11vw, 10rem) var(--pad);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    url("./assets/watercolor-wash.svg") left center / cover no-repeat,
    radial-gradient(ellipse at 14% 34%, rgba(119, 10, 25, .5), transparent 40%),
    radial-gradient(ellipse at 88% 78%, rgba(198, 157, 88, .2), transparent 34%),
    linear-gradient(145deg, #070708, #111013 58%, #070b0e);
  background-blend-mode: screen, screen, screen, normal;
}
.contact::after {
  content: "CONTACTO";
  position: absolute;
  left: -.04em;
  bottom: -.19em;
  z-index: 0;
  color: rgba(198, 157, 88, .055);
  font: 900 clamp(8rem, 24vw, 25rem)/.8 var(--display);
  letter-spacing: -.08em;
  user-select: none;
}
.contact-copy, .ticket-wrap { position: relative; z-index: 2; }
.contact-copy { max-width: 760px; }
.contact h2 { margin: 1.8rem 0 2rem; font-size: clamp(3.5rem, 7vw, 7.8rem); line-height: .87; letter-spacing: -.065em; }
.contact h2 span { color: var(--gold-bright); }
.contact-copy > p:not([class]) { max-width: 620px; margin: 0; color: var(--paper-dim); font-size: clamp(1rem, 1.3vw, 1.14rem); }
.ticket-wrap { width: min(100%, 610px); justify-self: center; padding: 0 .8rem; }
.contact-ticket {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  color: #13110e;
  background:
    linear-gradient(rgba(198, 157, 88, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 157, 88, .04) 1px, transparent 1px),
    #eee7da;
  background-size: 100% 28px, 28px 100%, auto;
  border: 1px solid rgba(198, 157, 88, .85);
  box-shadow: 20px 24px 0 rgba(198, 157, 88, .14), 0 24px 70px rgba(0, 0, 0, .38);
  font-family: "Courier New", Courier, monospace;
}
.contact-ticket::before, .contact-ticket::after {
  content: "";
  position: absolute;
  top: 45%;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0b0b0d;
}
.contact-ticket::before { left: -13px; }
.contact-ticket::after { right: -13px; }
.ticket-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; }
.ticket-head strong { font: 900 clamp(2rem, 4vw, 3.3rem)/.9 var(--display); letter-spacing: -.05em; }
.ticket-head span { max-width: 145px; font-size: .75rem; font-weight: 700; line-height: 1.35; letter-spacing: .08em; text-align: right; }
.ticket-rule { margin: 1.45rem 0; border-top: 2px dashed rgba(19, 17, 14, .48); }
.ticket-meta, .ticket-total { display: flex; justify-content: space-between; gap: 1.5rem; text-transform: uppercase; }
.ticket-meta { margin-bottom: 1.5rem; font-size: .76rem; font-weight: 700; letter-spacing: .07em; }
.form-field { display: grid; gap: .38rem; margin-bottom: 1.25rem; }
.form-field label { font-size: .86rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.form-field input, .form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: .55rem .25rem;
  color: #13110e;
  background: rgba(255, 255, 255, .14);
  border: 0;
  border-bottom: 1px solid rgba(19, 17, 14, .55);
  border-radius: 0;
  font: 600 1rem/1.45 var(--sans);
}
.form-field textarea { min-height: 128px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--gold-dim); outline-offset: 3px; background: rgba(255, 255, 255, .34); }
.ticket-total { align-items: baseline; margin-bottom: 1rem; font-size: .9rem; font-weight: 800; letter-spacing: .06em; }
.ticket-total strong { font-size: 1.08rem; }
.ticket-privacy { margin: 0 0 1.2rem; color: #514b43; font-size: .8rem; line-height: 1.5; }
.ticket-success { margin: 0 0 1.2rem; padding: .8rem; border: 1px solid #6d572f; font-weight: 800; font-size: .88rem; }
.ticket-submit {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.1rem;
  color: var(--paper);
  background: #11100e;
  border: 1px solid #11100e;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.ticket-submit:hover, .ticket-submit:focus-visible { color: #11100e; background: var(--gold); }
.ticket-thanks { margin: 1.5rem 0 0; font-size: .83rem; font-weight: 900; letter-spacing: .16em; text-align: center; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad) 2rem;
  border-top: 1px solid var(--line);
  background: url("./assets/watercolor-wash.svg") right bottom / 72% auto no-repeat, radial-gradient(ellipse at 88% 100%, rgba(198,157,88,.1), transparent 35%), #060708;
  background-blend-mode: screen, screen, normal;
}
.footer-brand { display: flex; align-items: center; gap: 1.2rem; }
.footer-monogram { display: grid; place-items: center; width: 68px; aspect-ratio: 1; background: var(--gold); color: var(--ink); font: 900 1.5rem/1 var(--display); }
.footer-brand p { margin: 0; color: var(--paper-dim); font-size: .9rem; line-height: 1.45; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 2rem; align-self: center; }
.footer-links a { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-bright); }
.footer-copy { grid-column: 1 / -1; max-width: 1120px; margin: 2rem 0 0; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #77716a; font-size: .75rem; line-height: 1.7; letter-spacing: .06em; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 960px) {
  .site-header { min-height: 68px; }
  .js .nav-toggle { display: flex; align-items: center; gap: .8rem; padding: .6rem 0; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .nav-toggle-lines { width: 24px; display: grid; gap: 6px; }
  .nav-toggle-lines i { display: block; height: 2px; background: currentColor; transition: transform .2s ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: .7rem var(--pad) 1.2rem;
    background: rgba(10,9,9,.97);
  }
  .js .site-nav { max-height: 0; padding-top: 0; padding-bottom: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
  .js .site-nav.is-open { max-height: 460px; padding-top: .7rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
  .site-nav a { padding: .75rem 0; }
  .site-nav a::after { display: none; }

  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; padding-top: 7.5rem; }
  .hero-copy, .hero-art { padding-bottom: 0; }
  .hero-copy { max-width: 820px; }
  h1 { font-size: clamp(6rem, 22vw, 11rem); }
  .hero-art { width: min(82vw, 660px); justify-self: end; }
  .platforms { grid-template-columns: repeat(2, 1fr); padding: 1.4rem 0; }
  .platforms-label { grid-column: 1 / -1; }

  .release-feature, .album-grid, .youtube-showcase, .upcoming, .bio, .merch, .arcade-teaser, .contact { grid-template-columns: 1fr; }
  .release-cover, .upcoming-art, .bio-art { width: min(82vw, 680px); }
  .release-cover { justify-self: start; }
  .youtube-player, .upcoming-art, .bio-art, .merch-art, .arcade-console, .ticket-wrap { justify-self: end; }
  .youtube-player { width: min(100%, 820px); }
  .album-cover { position: static; width: min(82vw, 680px); }
  .section-heading { grid-template-columns: 1fr; }
  .listen-heading { grid-template-columns: 1fr; }
  .release-cards { grid-template-columns: repeat(2, 1fr); }
  .release-card:last-child { grid-column: 1 / -1; width: calc(50% - .6rem); }
}

@media (max-width: 640px) {
  .wordmark-name { display: none; }
  .hero { gap: 2.6rem; }
  .hero-actions, .album-actions { display: grid; }
  .button { width: 100%; }
  .platforms { grid-template-columns: 1fr; }
  .platforms-label { grid-column: auto; }
  .release-feature, .album, .singles, .youtube-showcase, .listen-hub, .upcoming, .bio, .merch, .arcade-teaser, .contact { padding-top: 5rem; padding-bottom: 5rem; }
  .release-cover, .upcoming-art, .bio-art, .album-cover, .merch-art { width: 100%; }
  .release-copy h2, .upcoming h2 { font-size: clamp(4.6rem, 24vw, 8rem); }
  .youtube-copy h2 { font-size: clamp(3.35rem, 18vw, 6.3rem); }
  .youtube-player { width: 100%; padding: .45rem; }
  .youtube-player-bar { padding: .25rem .1rem .55rem; font-size: .68rem; letter-spacing: .08em; }
  .listen-heading h2 { font-size: clamp(3.15rem, 16vw, 5.8rem); }
  .stream-tabs { grid-template-columns: 1fr; }
  .stream-tabs button { min-height: 48px; border-right: 0; border-bottom: 1px solid var(--line); }
  .stream-tabs button:last-child { border-bottom: 0; }
  .stream-panel { padding: .65rem; }
  .stream-panel-head { align-items: flex-start; flex-direction: column; }
  .stream-frame-spotify { height: 352px; }
  .stream-frame-soundcloud { height: 390px; }
  .section-heading h2, .bio h2, .merch h2, .arcade-teaser h2, .contact h2 { font-size: clamp(3.35rem, 18vw, 6.3rem); }
  .arcade-console { width: 100%; }
  .ticket-wrap { width: 100%; padding: 0 .55rem; }
  .contact-ticket { padding: 1.6rem 1.35rem; box-shadow: 10px 14px 0 rgba(198, 157, 88, .14); }
  .ticket-head { align-items: flex-end; }
  .ticket-head span { max-width: 120px; font-size: .7rem; }
  .arcade-screen { min-height: 250px; }
  .release-cards { grid-template-columns: 1fr; }
  .release-card:last-child { grid-column: auto; width: auto; }
  .tracklist a { grid-template-columns: 42px minmax(0, 1fr); min-height: 62px; }
  .track-action { grid-column: 2; justify-self: start; margin-top: -.2rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-copy { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
