:root {
  --bg: #080808;
  --bg-soft: #0f0f0f;
  --text: #f3f0ea;
  --muted: #92908c;
  --line: rgba(255,255,255,.14);
  --accent: #d6d1c7;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img, video {
  display: block;
  width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  z-index: 999;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,.055), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  mix-blend-mode: difference;
}

.brand {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .28em;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.nav a {
  position: relative;
  opacity: .84;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  margin: 6px auto;
}

.section {
  position: relative;
  z-index: 2;
  padding: 9rem 6vw;
}

.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent),
    radial-gradient(circle at 70% 40%, #343434 0, #151515 34%, #080808 70%);
  transform: scale(1.03);
}

.hero-vignette {
  background:
    linear-gradient(to top, rgba(0,0,0,.84), transparent 55%),
    linear-gradient(to right, rgba(0,0,0,.45), transparent 50%);
}

.placeholder-image {
  background:
    linear-gradient(145deg, #1b1b1b, #0d0d0d 65%);
  color: rgba(255,255,255,.35);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.placeholder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 15%, rgba(255,255,255,.025) 45%, transparent 70%);
}

.placeholder-image span {
  z-index: 1;
  font-size: .68rem;
  letter-spacing: .22em;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 6vw 7vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(5rem, 17vw, 13rem);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.055em;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  margin: 2.4rem 0;
  font-weight: 300;
  letter-spacing: .01em;
}

.hero-actions {
  display: flex;
  gap: .9rem;
}

.btn {
  min-width: 136px;
  padding: .9rem 1.15rem;
  border: 1px solid rgba(255,255,255,.45);
  text-align: center;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: .25s ease;
}

.btn-light {
  background: var(--text);
  color: #111;
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .75rem;
  transform: rotate(90deg);
  transform-origin: right bottom;
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
}

.scroll-cue i {
  width: 60px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}

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

.release-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) .95fr;
  gap: 7vw;
  align-items: center;
}

.square {
  aspect-ratio: 1 / 1;
}

.release-copy {
  max-width: 580px;
}

.release-kicker {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .2em;
  margin-bottom: .8rem;
}

.release-copy h3 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.6rem;
}

.release-copy > p {
  color: #b6b2ac;
  font-size: 1.02rem;
  line-height: 1.8;
}

.platform-links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
}

.platform-links a,
.card-meta a,
.visual-caption span:last-child,
.socials a {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #d1cdc7;
}

.discography {
  border-top: 1px solid var(--line);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.muted {
  color: var(--muted);
  font-size: .9rem;
}

.release-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

.card-art {
  aspect-ratio: 1 / 1;
  transition: transform .4s ease;
}

.music-card:hover .card-art {
  transform: scale(.985);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-top: 1.1rem;
}

.card-meta h3 {
  font-size: 1rem;
  font-weight: 500;
}

.card-meta p {
  color: var(--muted);
  font-size: .72rem;
  margin-top: .35rem;
}

.visuals {
  background: #0b0b0b;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: repeat(2, minmax(260px, 42vh));
  gap: 1.2rem;
}

.visual-large {
  grid-row: 1 / 3;
}

.visual {
  position: relative;
  overflow: hidden;
}

.visual > .placeholder-image {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}

.visual:hover > .placeholder-image {
  transform: scale(1.025);
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.3rem;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  font-size: .83rem;
}

.about {
  display: grid;
  grid-template-columns: .3fr 1fr;
  gap: 7vw;
  border-top: 1px solid var(--line);
}

.about-number {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .16em;
}

.about-copy {
  max-width: 850px;
}

.about-lead {
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.4;
  margin: 2.8rem 0 1.5rem;
  color: #d8d4ce;
}

.about-copy > p:last-child {
  max-width: 700px;
  line-height: 1.85;
  color: #9e9b96;
}

.quote-section {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.045), transparent 38%);
}

.quote-section p {
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  max-width: 1100px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
}

.highlight {
  padding: 3.5rem 2rem 3.5rem 0;
  border-top: 1px solid var(--line);
}

.highlight-number {
  display: block;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.highlight-label {
  display: block;
  margin-top: .9rem;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact {
  background: #efebe4;
  color: #111;
}

.contact .eyebrow {
  color: #77716b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.2);
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .67rem;
  color: #77716b;
  margin-bottom: .8rem;
}

.contact-grid a {
  font-size: 1.05rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
}

.socials a {
  color: #111;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 6vw;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8f8c87;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    padding: 0 5vw;
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: #080808;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.1rem;
    font-size: 1.35rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .section {
    padding: 6.5rem 5vw;
  }

  .hero-content {
    padding: 0 5vw 8vh;
  }

  .release-grid,
  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .release-grid {
    gap: 3rem;
  }

  .release-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2.8rem 1rem;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 48vh);
  }

  .visual-large {
    grid-row: auto;
  }

  .about {
    gap: 2rem;
  }

  .about-number {
    display: none;
  }

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

  .highlight {
    padding-right: 0;
  }

  .split-heading {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 27vw;
  }

  .hero-actions {
    flex-direction: column;
    width: min(100%, 310px);
  }

  .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .release-cards {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: block;
  }

  .split-heading .muted {
    margin-top: 1rem;
  }

  .quote-section {
    min-height: 52vh;
  }

  .contact-grid {
    margin-top: 3rem;
  }

  .footer {
    gap: 1rem;
    flex-direction: column;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}


.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 38%;
  filter: saturate(.8) contrast(1.02) brightness(.72);
  transform: scale(1.015);
}

.release-art img,
.card-art img,
.visual img,
.gallery-masonry img,
.statement-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.release-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
}

.card-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.card-art img {
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.music-card:hover .card-art img {
  transform: scale(1.035);
}

.visual {
  background: #111;
}

.visual img {
  transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .4s ease;
  filter: saturate(.9) brightness(.82);
}

.visual:hover img {
  transform: scale(1.025);
  filter: saturate(1) brightness(.9);
}

.gallery {
  background: #090909;
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry img {
  height: auto;
  margin: 0 0 1rem;
  break-inside: avoid;
  filter: saturate(.84);
  transition: transform .4s ease, filter .4s ease;
}

.gallery-masonry img:hover {
  transform: scale(.992);
  filter: saturate(1);
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  min-height: 78vh;
  background: #111;
}

.statement-image {
  min-height: 78vh;
  overflow: hidden;
}

.statement-image img {
  object-position: center;
}

.statement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.statement-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 6.4rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 400;
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
  .statement { grid-template-columns: 1fr; }
  .statement-image { min-height: 55vh; }
  .hero-image { object-position: 55% center; }
}

@media (max-width: 620px) {
  .gallery-masonry { columns: 1; }
  .statement-image { min-height: 48vh; }
  .hero-image { object-position: 54% center; }
}


/* HXNA PUBLIC-SITE UPGRADE */
.hero-identity {
  margin-top: 2rem;
  margin-bottom: .8rem;
}

.identity-main {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: .22em;
  font-weight: 600;
}

.identity-sub {
  margin-top: .45rem;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  letter-spacing: .08em;
}

.hero-genre {
  color: rgba(255,255,255,.65);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.release-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.release-status {
  border: 1px solid rgba(255,255,255,.24);
  padding: .6rem .8rem;
  font-size: .62rem;
  letter-spacing: .2em;
}

.release-copy h3 {
  max-width: 630px;
}

.mini-note {
  margin-top: 3.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .2em;
}

.spotify-player {
  margin-top: 5rem;
  max-width: 900px;
}

.about-origin {
  max-width: 760px;
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
  color: #d6d2cb;
  line-height: 1.7;
}

.statement-copy > p:last-child {
  margin-top: 2rem;
  max-width: 570px;
  color: #9f9b95;
  line-height: 1.8;
}

.momentum {
  background: #efebe4;
  color: #111;
}

.momentum .eyebrow,
.momentum .muted {
  color: #77716b;
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,.18);
  margin-top: 3rem;
}

.momentum-card {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid rgba(0,0,0,.13);
}

.momentum-card:last-child {
  border-right: 0;
  padding-left: 2rem;
}

.momentum-card:nth-child(2) {
  padding-left: 2rem;
}

.momentum-card strong {
  display: block;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
}

.momentum-card span {
  display: block;
  margin-top: 1rem;
  color: #6f6a65;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.press {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: end;
  background: #0e0e0e;
}

.press h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .97;
  letter-spacing: -.05em;
  font-weight: 400;
}

.press-copy {
  max-width: 520px;
}

.press-copy > p {
  color: #aaa6a0;
  line-height: 1.8;
}

.press-actions {
  display: flex;
  gap: .9rem;
  margin-top: 2rem;
}

.dark-ghost {
  color: white;
}

.contact-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid-three a {
  font-size: .9rem;
  overflow-wrap: anywhere;
}

.contact-social-row {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.2);
}

/* EPK */
.epk-page {
  background: #090909;
}

.epk-header {
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, rgba(8,8,8,.8), transparent);
}

.epk-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  padding-top: var(--header-h);
}

.epk-hero-image {
  min-height: 92vh;
}

.epk-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) brightness(.82);
}

.epk-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.epk-hero-copy h1 {
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: .78;
  letter-spacing: -.06em;
  font-weight: 500;
}

.epk-tag {
  margin-top: 3rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.epk-sub {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.epk-section {
  padding: 8rem 7vw;
  border-top: 1px solid var(--line);
}

.epk-big-copy {
  max-width: 1200px;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.epk-two-col {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}

.epk-two-col h2,
.epk-contact h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 400;
}

.epk-body {
  max-width: 700px;
  color: #aaa6a0;
  line-height: 1.85;
}

.epk-body p + p {
  margin-top: 1.4rem;
}

.epk-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.epk-facts div {
  padding: 2.8rem 1.4rem 0 0;
}

.epk-facts strong {
  display: block;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.05em;
}

.epk-facts span {
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.epk-inline-link {
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.epk-press-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.epk-press-images a {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.epk-press-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
  transition: transform .4s ease;
}

.epk-press-images a:hover img {
  transform: scale(1.02);
}

.epk-image-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .7rem;
}

.epk-contact {
  background: #efebe4;
  color: #111;
}

.epk-contact .eyebrow {
  color: #77716b;
}

.epk-socials {
  margin-top: 2.5rem;
}

.epk-socials a {
  color: #111;
}

@media (max-width: 900px) {
  .release-heading {
    align-items: start;
  }

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

  .momentum-card,
  .momentum-card:nth-child(2),
  .momentum-card:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.13);
    padding: 2.6rem 0;
  }

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

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

  .epk-hero,
  .epk-two-col {
    grid-template-columns: 1fr;
  }

  .epk-hero-image {
    min-height: 58vh;
  }

  .epk-hero {
    min-height: auto;
  }

  .epk-facts {
    grid-template-columns: 1fr 1fr;
  }

  .epk-press-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .hero-location {
    margin-bottom: .7rem;
  }

  .identity-main {
    font-size: .82rem;
  }

  .identity-sub {
    font-size: .75rem;
  }

  .hero-genre {
    font-size: .62rem;
  }

  .release-heading {
    display: block;
  }

  .release-status {
    display: inline-block;
    margin-top: 1.2rem;
  }

  .press-actions {
    flex-direction: column;
  }

  .epk-nav {
    display: flex;
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    flex-direction: row;
    font-size: .63rem;
    gap: 1rem;
  }

  .epk-hero-image {
    min-height: 52vh;
  }

  .epk-hero-copy {
    padding: 4rem 5vw 5rem;
  }

  .epk-facts,
  .epk-press-images {
    grid-template-columns: 1fr;
  }

  .epk-section {
    padding: 5.5rem 5vw;
  }
}


/* NEW HXNA PHOTO UPDATE */
.hero-image {
  object-position: center 38%;
}

@media (max-width: 700px) {
  .hero-image {
    object-position: 54% center;
  }
}
