
:root {
  --background: #030407;
  --foreground: #f8f7f4;
  --aylen-red: #af0202;
  --aylen-black: #1b1b1b;
  --deep-black: #080c11;
  --stage-blue: #4c778f;
  --skin-rose: #a98b89;
  --muted-white: rgba(248, 247, 244, 0.68);
  --font-geist-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --scroll-progress: 0;
}


* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--foreground);
  scroll-padding-top: 6rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

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

svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

button {
  font: inherit;
}

.js [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px);
  transition:
    opacity 820ms ease,
    filter 820ms ease,
    transform 820ms ease;
}

.js [data-image-reveal] {
  opacity: 0;
  clip-path: inset(18% 0% 18% 0%);
  filter: blur(12px);
  transform: scale(1.04);
  transition:
    opacity 920ms ease,
    clip-path 920ms ease,
    filter 920ms ease,
    transform 920ms ease;
}

.js [data-reveal].is-visible,
.js [data-image-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  filter: blur(0);
  transform: translateY(0) scale(1);
}

::selection {
  background: var(--aylen-red);
  color: white;
}

.site-experience {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #030407 0%, #0c080a 45%, #030407 100%),
    var(--background);
}

.cursor-aura {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(175, 2, 2, 0.72);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(175, 2, 2, 0.36);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.hero-scene {
  position: relative;
  min-height: 94svh;
  isolation: isolate;
  overflow: hidden;
  background: #030407;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.74) 36%, rgba(3, 4, 7, 0.2) 72%, rgba(3, 4, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0) 42%),
    radial-gradient(ellipse at 70% 46%, rgba(175, 2, 2, 0.2), transparent 36%);
}

.desktop-nav {
  position: fixed;
  top: 1.05rem;
  right: clamp(1.25rem, 4vw, 4.5rem);
  left: clamp(1.25rem, 4vw, 4.5rem);
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.4rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(3, 4, 7, 0.46);
  padding: 0.68rem 0.72rem 0.68rem 1.05rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.desktop-nav::after,
.mobile-nav::after {
  content: "";
  position: absolute;
  right: 0.72rem;
  bottom: -1px;
  left: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aylen-red), rgba(255, 255, 255, 0.74));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 160ms linear;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  width: 10.5rem;
}

.desktop-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.desktop-nav nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  border-radius: 6px;
  padding: 0 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 280ms ease,
    color 280ms ease,
    transform 280ms ease;
}

.desktop-nav nav a::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: 0.58rem;
  left: 0.85rem;
  height: 1px;
  background: var(--aylen-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.desktop-nav nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateY(-1px);
}

.desktop-nav nav a:hover::after,
.desktop-nav nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.desktop-nav nav a[aria-current="location"] {
  background: rgba(175, 2, 2, 0.16);
  color: white;
}

.desktop-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  border: 1px solid rgba(175, 2, 2, 0.68);
  border-radius: 6px;
  background: rgba(175, 2, 2, 0.2);
  padding: 0 0.95rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.desktop-nav-cta:hover {
  background: rgba(175, 2, 2, 0.72);
  box-shadow: 0 0 34px rgba(175, 2, 2, 0.28);
  transform: translateY(-1px);
}

.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.mobile-menu a:focus-visible,
.mobile-menu-button:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.mobile-nav,
.mobile-menu {
  display: none;
}

.mobile-nav {
  position: fixed;
  top: 0.85rem;
  right: 1rem;
  left: 1rem;
  z-index: 82;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(3, 4, 7, 0.6);
  padding: 0.55rem 0.58rem 0.55rem 0.78rem;
  backdrop-filter: blur(20px);
}

.mobile-mark {
  display: inline-flex;
  width: 4.8rem;
}

.mobile-menu-button,
.mobile-menu-close {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.mobile-menu-button .icon-close {
  display: none;
}

.mobile-menu-button[aria-expanded="true"] .icon-menu {
  display: none;
}

.mobile-menu-button[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(135deg, rgba(3, 4, 7, 0.98) 0%, rgba(34, 2, 5, 0.98) 58%, rgba(3, 4, 7, 0.98) 100%),
    #030407;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1.2rem);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

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

.mobile-menu-sheen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(175, 2, 2, 0.32), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(76, 119, 143, 0.26), transparent 28%);
  opacity: 0.75;
}

.mobile-menu-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.mobile-menu-header img {
  width: 8.5rem;
}

.mobile-menu nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: clamp(1rem, 5svh, 2rem) 1rem 1rem;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  min-height: clamp(4.25rem, 10.5svh, 5.4rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(1rem);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    opacity 360ms ease,
    transform 360ms ease;
  transition-delay: calc(var(--nav-index) * 45ms);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav a:active {
  border-color: rgba(175, 2, 2, 0.72);
  background: rgba(175, 2, 2, 0.18);
}

.mobile-menu nav a[aria-current="location"] {
  border-color: rgba(175, 2, 2, 0.82);
  background:
    linear-gradient(90deg, rgba(175, 2, 2, 0.24), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.055);
}

.mobile-menu nav a[aria-current="location"] span,
.mobile-menu nav a[aria-current="location"] svg {
  color: white;
}

.mobile-menu nav span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-menu nav strong {
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-streaming-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: auto 1rem calc(2.25rem + env(safe-area-inset-bottom));
  border: 1px solid rgba(175, 2, 2, 0.84);
  border-radius: 8px;
  background: var(--aylen-red);
  color: white;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.nav-open body {
  overflow: hidden;
}

.biography-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #030407 0%, #140305 44%, #030407 100%),
    #030407;
  color: white;
}

.biography-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  background: #030407;
}

.biography-hero-media,
.biography-hero-media img,
.biography-hero-shade {
  position: absolute;
  inset: 0;
}

.biography-hero-media {
  z-index: -3;
}

.biography-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 72% center;
}

.biography-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.78) 42%, rgba(3, 4, 7, 0.22) 74%, rgba(3, 4, 7, 0.64) 100%),
    linear-gradient(0deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.08) 48%, rgba(3, 4, 7, 0.26) 100%),
    radial-gradient(ellipse at 74% 42%, rgba(175, 2, 2, 0.24), transparent 34%);
}

.biography-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  max-width: 64rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem clamp(1.25rem, 4vw, 4.5rem) 5rem;
}

.biography-hero-content h1 {
  max-width: 48rem;
  margin: 0.85rem 0 0;
  font-size: 4.9rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.biography-hero-content p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.biography-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.biography-body {
  display: grid;
  grid-template-columns: minmax(18rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background: #f8f7f4;
  color: #030407;
}

.biography-sticky-heading {
  position: sticky;
  top: 7.25rem;
  align-self: start;
}

.biography-sticky-heading h2 {
  max-width: 30rem;
  margin: 0.8rem 0 1.6rem;
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.biography-source-link {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(3, 4, 7, 0.15);
  border-radius: 6px;
  padding: 0 1rem;
  color: #030407;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 280ms ease,
    background 280ms ease,
    transform 280ms ease;
}

.biography-source-link:hover {
  border-color: rgba(175, 2, 2, 0.62);
  background: rgba(175, 2, 2, 0.08);
  transform: translateY(-1px);
}

.biography-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 58rem;
}

.biography-copy p {
  margin: 0;
  color: rgba(3, 4, 7, 0.78);
  font-size: 1.04rem;
  line-height: 1.85;
}

.biography-copy p:first-child {
  color: #030407;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.58;
}

.biography-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.biography-milestone {
  display: grid;
  min-height: 18rem;
  align-content: end;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(175, 2, 2, 0.22), rgba(255, 255, 255, 0.035)),
    #050609;
  padding: 1.25rem;
}

.biography-milestone span {
  color: var(--aylen-red);
  font-size: 3.7rem;
  font-weight: 950;
  line-height: 0.86;
}

.biography-milestone strong {
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.biography-milestone p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.biography-close {
  display: grid;
  min-height: 54svh;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(175, 2, 2, 0.32), transparent 44%),
    #030407;
}

.biography-close div {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.biography-close p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.biography-close h2 {
  margin: 0;
  color: var(--aylen-red);
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  min-height: 94svh;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 82rem;
  padding: 8rem clamp(1.25rem, 4vw, 4.5rem) 4.2rem;
}

.hero-kicker,
.section-kicker {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0.9rem 0 0;
  max-width: 44rem;
  font-size: 6rem;
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
  color: var(--aylen-red);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 57rem;
  margin-top: 2rem;
}

.hero-bottom p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.premium-action,
.ghost-action {
  position: relative;
  display: inline-flex;
  min-height: 3.7rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  border-radius: 2px;
  padding: 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 500ms ease;
}

.premium-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 42%, transparent 58%),
    linear-gradient(90deg, rgba(175, 2, 2, 0.92), rgba(175, 2, 2, 0.22));
  transform: translateX(-108%);
  transition: transform 700ms ease;
}

.premium-action:hover {
  border-color: rgba(175, 2, 2, 0.92);
  box-shadow: 0 0 44px rgba(175, 2, 2, 0.26);
  transform: translateY(-2px);
}

.premium-action:hover::before {
  transform: translateX(0);
}

.ghost-action {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  transition:
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms ease;
}

.ghost-action:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.ghost-action.light {
  border-color: rgba(3, 4, 7, 0.16);
  color: #030407;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(5rem, 0.32fr) minmax(18rem, 0.78fr) minmax(22rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  min-height: 100svh;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, #0a0507 0%, #2a0305 46%, #09090b 100%),
    #0a0507;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 80%, transparent);
  opacity: 0.35;
}

.scene-number {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.1);
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.85;
}

.story-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.story-copy p {
  max-width: 34rem;
  margin: 0 0 2.2rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.story-copy p:nth-child(2) {
  color: var(--aylen-red);
}

.story-copy p:nth-child(3) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.65;
  text-transform: none;
}

.story-images {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 1rem;
  align-self: center;
}

.story-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-frame.tall {
  aspect-ratio: 4 / 5;
}

.story-frame.square {
  aspect-ratio: 1;
  transform: translateY(4rem);
}

.story-frame.monogram {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 1.35rem;
  background: #030407;
}

.story-frame.monogram img {
  width: 86%;
  height: auto;
  object-fit: contain;
}

.music-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 110svh;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  overflow: hidden;
  background: #030407;
}

.music-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.23;
}

.music-backdrop img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.music-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030407 0%, rgba(3, 4, 7, 0.86) 38%, rgba(3, 4, 7, 0.58) 100%),
    linear-gradient(180deg, #030407 0%, transparent 30%, #030407 100%);
}

.music-intro,
.platform-stack,
.embed-stage {
  position: relative;
  z-index: 1;
}

.music-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-kicker {
  color: var(--aylen-red);
}

.music-intro h2,
.section-heading h2,
.gallery-heading h2,
.tour-content h2,
.contact-copy h2 {
  margin: 0.8rem 0 0;
  max-width: 42rem;
  font-size: 4.6rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.music-intro p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1.5rem 0 2rem;
  color: var(--muted-white);
  font-size: 1rem;
  line-height: 1.75;
}

.platform-stack {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  max-width: 36rem;
  margin-left: auto;
}

.platform-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
  backdrop-filter: blur(18px);
  transition:
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.platform-link:hover {
  border-color: rgba(175, 2, 2, 0.78);
  background: rgba(175, 2, 2, 0.15);
  transform: translateX(4px);
}

.platform-link span {
  display: grid;
  gap: 0.28rem;
}

.platform-link strong {
  font-size: 1rem;
}

.platform-link small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.embed-stage {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.embed-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.spotify-frame iframe {
  height: 22rem;
}

.youtube-frame {
  aspect-ratio: 16 / 9;
}

.youtube-frame iframe {
  height: 100%;
}

.discography-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(180deg, #030407 0%, #101015 42%, #030407 100%),
    #030407;
}

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

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.release-card {
  position: relative;
  display: grid;
  min-height: 31rem;
  overflow: hidden;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
  padding: 1rem;
  transition:
    border-color 400ms ease,
    transform 400ms ease,
    box-shadow 400ms ease;
}

.release-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    scale 700ms ease,
    filter 700ms ease;
}

.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 7, 0.28) 44%, rgba(3, 4, 7, 0.96) 100%),
    linear-gradient(90deg, rgba(175, 2, 2, 0.18), transparent 42%);
}

.release-card span,
.release-card strong,
.release-card svg {
  position: relative;
  z-index: 1;
}

.release-year {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.release-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-card strong {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.release-card svg {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.release-card:hover {
  border-color: rgba(175, 2, 2, 0.85);
  box-shadow: 0 0 52px rgba(175, 2, 2, 0.2);
  transform: translateY(-8px);
}

.release-card:hover img {
  filter: saturate(1.18) contrast(1.08);
  scale: 1.05;
}

.gallery-section {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: #050609;
}

.gallery-heading {
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
}

.gallery-viewport {
  margin-top: 2.5rem;
  overflow: visible;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  will-change: transform;
}

.gallery-frame {
  position: relative;
  width: 22rem;
  height: 31rem;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
}

.gallery-frame:nth-child(2n) {
  width: 30rem;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 500ms ease,
    scale 700ms ease;
}

.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 4, 7, 0.86));
}

.gallery-frame figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-frame:hover img {
  filter: saturate(1.18);
  scale: 1.04;
}

.tour-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(20rem, 1fr);
  min-height: 92svh;
  background: #f8f7f4;
  color: #030407;
}

.tour-image {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 4vw, 4.5rem);
}

.tour-content .section-kicker {
  color: var(--aylen-red);
}

.tour-lines {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
  max-width: 34rem;
}

.tour-lines div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(3, 4, 7, 0.16);
  padding-top: 1rem;
  font-size: 1rem;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4.5rem);
  background:
    linear-gradient(135deg, #09090b 0%, #210204 55%, #030407 100%),
    #030407;
}

.contact-mark img {
  width: min(24rem, 100%);
}

.contact-copy p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-copy h2 {
  font-size: 3.4rem;
}

.contact-links {
  display: grid;
  gap: 0.75rem;
}

.contact-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    background 300ms ease;
}

.contact-links a:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

@media (min-width: 760px) {
  .hero-content h1 {
    font-size: 8.5rem;
  }

  .biography-hero-content h1 {
    font-size: 6.7rem;
  }
}

@media (min-width: 1180px) {
  .hero-content h1 {
    font-size: 10rem;
  }

  .biography-hero-content h1 {
    font-size: 8rem;
  }

  .scene-number {
    font-size: 8rem;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    grid-template-columns: minmax(8rem, 9rem) 1fr auto;
  }

  .nav-wordmark {
    width: 8.6rem;
  }

  .desktop-nav nav a {
    padding: 0 0.62rem;
    font-size: 0.72rem;
  }

  .hero-bottom,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-section,
  .music-section,
  .embed-stage,
  .tour-section,
  .biography-body,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .story-section {
    min-height: auto;
  }

  .scene-number {
    display: none;
  }

  .story-images {
    max-width: 42rem;
  }

  .platform-stack {
    max-width: none;
    margin-left: 0;
  }

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

  .tour-image {
    min-height: 28rem;
  }

  .biography-sticky-heading {
    position: static;
  }

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

@media (max-width: 759px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav,
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 640px) {
  .cursor-aura {
    display: none;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 4, 7, 0.92) 0%, rgba(3, 4, 7, 0.52) 60%, rgba(3, 4, 7, 0.32) 100%),
      linear-gradient(0deg, rgba(3, 4, 7, 0.98) 0%, rgba(3, 4, 7, 0.08) 58%),
      radial-gradient(ellipse at 62% 44%, rgba(175, 2, 2, 0.16), transparent 40%);
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-content h1 {
    font-size: 5rem;
  }

  .biography-hero-media img {
    object-position: 68% center;
  }

  .biography-hero-content {
    padding-top: 7rem;
    padding-bottom: 3.4rem;
  }

  .biography-hero-content h1 {
    font-size: 3.65rem;
  }

  .biography-actions,
  .biography-actions .premium-action,
  .biography-actions .ghost-action {
    width: 100%;
  }

  .hero-actions,
  .premium-action,
  .ghost-action {
    width: 100%;
  }

  .story-copy p {
    font-size: 2.15rem;
  }

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

  .story-frame.square {
    transform: none;
  }

  .music-intro h2,
  .section-heading h2,
  .gallery-heading h2,
  .tour-content h2,
  .biography-sticky-heading h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .biography-copy p:first-child {
    font-size: 1.14rem;
  }

  .biography-timeline {
    grid-template-columns: 1fr;
  }

  .biography-milestone {
    min-height: 13rem;
  }

  .biography-close h2 {
    font-size: 3.6rem;
  }

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

  .release-card {
    min-height: 28rem;
  }

  .gallery-track {
    display: grid;
    width: auto;
    padding-right: clamp(1.25rem, 4vw, 4.5rem);
  }

  .gallery-frame,
  .gallery-frame:nth-child(2n) {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-section {
    align-items: start;
  }
}

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