:root {
  --bg: #120825;
  --bg-deep: #0a0418;
  --panel: #1d1038;
  --panel-strong: #24124a;
  --panel-soft: rgba(29, 16, 56, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c4b6df;
  --muted-strong: #8f82b5;
  --accent: #ff2f92;
  --accent-deep: #cf1e72;
  --accent-soft: rgba(255, 47, 146, 0.2);
  --blue: #53bcff;
  --blue-soft: rgba(83, 188, 255, 0.18);
  --lime: #8cd941;
  --surface: #f4edf7;
  --surface-text: #160d24;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font-head: "League Spartan", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 188, 255, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 47, 146, 0.14), transparent 32%),
    linear-gradient(180deg, #130826 0%, #0d061e 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
section,
footer {
  position: relative;
}

section[id],
footer[id] {
  scroll-margin-top: 120px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px 6px 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 4, 24, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 6px;
}

.section-tag-dark {
  color: var(--surface-text);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header-center {
  text-align: center;
}

.section-header h2,
.bio-copy h2,
.podcast-copy h2,
.contact-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 30px rgba(255, 47, 146, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  background: #ff4ca1;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 47, 146, 0.08);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface-text);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 7, 24, 0.86);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.eq-bar {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: var(--accent);
  animation: eq-bounce ease-in-out infinite;
}

.eq-bar:nth-child(1)  { height: 40%; animation-duration: 0.8s; }
.eq-bar:nth-child(2)  { height: 70%; animation-duration: 0.6s; animation-delay: 0.1s; }
.eq-bar:nth-child(3)  { height: 50%; animation-duration: 0.9s; animation-delay: 0.05s; }
.eq-bar:nth-child(4)  { height: 90%; animation-duration: 0.7s; animation-delay: 0.15s; }
.eq-bar:nth-child(5)  { height: 60%; animation-duration: 0.5s; animation-delay: 0.08s; }
.eq-bar:nth-child(6)  { height: 80%; animation-duration: 0.8s; animation-delay: 0.12s; }
.eq-bar:nth-child(7)  { height: 45%; animation-duration: 0.6s; animation-delay: 0.02s; }
.eq-bar:nth-child(8)  { height: 75%; animation-duration: 0.9s; animation-delay: 0.18s; }
.eq-bar:nth-child(9)  { height: 55%; animation-duration: 0.7s; animation-delay: 0.06s; }
.eq-bar:nth-child(10) { height: 65%; animation-duration: 0.5s; animation-delay: 0.1s; }
.eq-bar:nth-child(11) { height: 85%; animation-duration: 0.8s; animation-delay: 0.14s; }
.eq-bar:nth-child(12) { height: 50%; animation-duration: 0.6s; animation-delay: 0.03s; }

.bio-equalizer {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
  padding: 8px 12px;
  background: rgba(10, 4, 24, 0.35);
  border-radius: 6px;
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  top: 38px;
  left: 0;
  z-index: 1050;
  width: 100%;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.nav.scrolled {
  background: rgba(14, 8, 28, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 82px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo-mark {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    2px 0 0 var(--blue),
    -2px 0 0 var(--accent);
}

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.social-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 47, 146, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 180px 0 80px;
  overflow: hidden;
}

.hero-background,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-background {
  background:
    linear-gradient(90deg, rgba(18, 8, 37, 0.88) 0%, rgba(18, 8, 37, 0.55) 56%, rgba(18, 8, 37, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 3, 12, 0.3), rgba(6, 3, 12, 0.65)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.05);
}

.hero-glow {
  background:
    radial-gradient(circle at 26% 30%, rgba(255, 47, 146, 0.24), transparent 22%),
    radial-gradient(circle at 68% 42%, rgba(83, 188, 255, 0.18), transparent 24%),
    radial-gradient(circle at 56% 72%, rgba(255, 255, 255, 0.06), transparent 18%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

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

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 4.7rem);
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: inline-block;
  color: #fff;
}

.hero-text {
  max-width: 540px;
  margin-top: 24px;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 10, 40, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-highlights-small {
  gap: 8px;
  margin-top: 24px;
}

.hero-highlights-small li {
  padding: 6px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  border-color: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
}

.section-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-frame {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
  border: 12px solid var(--accent);
  opacity: 0.7;
}

.hero-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-shot img,
.bio-card img,
.release-image img,
.release-cover img,
.podcast-cover img,
.wall-tile img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot img {
  filter: contrast(1.1) brightness(1.05);
  mix-blend-mode: luminosity;
  object-position: center top;
}

.hero-shot {
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.3), rgba(83, 188, 255, 0.2));
}

.bio-card img {
  object-position: center top;
}

.bio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.15), rgba(83, 188, 255, 0.1));
  z-index: 1;
  pointer-events: none;
}

.hero-shot::after,
.bio-card::after,
.release-image::after,
.podcast-player::after,
.news-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 7, 28, 0.04), rgba(14, 7, 28, 0.55));
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 42px;
  max-width: 240px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 7, 28, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-note-label,
.news-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-note-title {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note-copy {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.biography {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(15, 7, 33, 0.98));
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.bio-media {
  position: relative;
  min-height: 520px;
}

.bio-outline {
  position: absolute;
  left: -3%;
  top: -50px;
  width: 85%;
  height: 85%;
  border: 10px solid rgba(255, 47, 146, 0.3);
}

.bio-card {
  position: absolute;
  left: 34px;
  top: 0;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(255, 47, 146, 0.28);
}

.play-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

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

.bio-copy p + p {
  margin-top: 18px;
}

.bio-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.bio-stats article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bio-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
}

.bio-stats span {
  font-size: 0.82rem;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-showcase {
  padding: 0;
  background: var(--bg-deep);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 160px;
}

.wall-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.wall-tile:nth-child(2),
.wall-tile:nth-child(9) {
  grid-column: span 2;
}

.wall-tile:nth-child(4),
.wall-tile:nth-child(10) {
  grid-row: span 2;
}

.wall-tile img {
  filter: saturate(1.06) contrast(1.02);
}

.social-panel-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.social-panel {
  width: min(520px, 100%);
  padding: 40px;
  background: var(--surface);
  color: var(--surface-text);
  box-shadow: var(--shadow);
}

.social-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
}

.social-panel h2 span,
.newsletter-copy h2 span {
  color: var(--accent);
}

.social-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.events {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(16, 8, 34, 0.98));
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  padding: 28px 24px 24px;
  border-top: 6px solid var(--accent);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.event-date {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.event-day {
  font-family: var(--font-head);
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--accent);
}

.event-month {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.event-card h3 {
  font-size: 1.65rem;
  text-transform: uppercase;
}

.event-card p {
  margin-top: 14px;
  color: var(--muted);
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.release {
  overflow: hidden;
}

.release-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 4, 24, 0.3), rgba(10, 4, 24, 0.92)),
    url("../images/gallery2.jpg") center/cover no-repeat;
  opacity: 0.24;
}

.release-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.release-image {
  position: relative;
  aspect-ratio: 1.2 / 1;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.release-card {
  justify-self: center;
  width: min(100%, 320px);
  padding: 26px;
  background: rgba(20, 10, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.release-cover {
  aspect-ratio: 1 / 1;
  margin: 0 0 22px;
  overflow: hidden;
}

.release-price {
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent);
}

.release-card h2 {
  font-size: 2rem;
  text-transform: uppercase;
}

.release-card p:last-of-type {
  margin: 16px 0 24px;
  color: var(--muted);
}

.services {
  background: var(--bg-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  padding: 28px 18px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 47, 146, 0.35);
  border-radius: 50%;
  background: rgba(255, 47, 146, 0.08);
  color: var(--accent);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.podcast {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(10, 4, 22, 0.98));
}

.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 58px;
  align-items: center;
}

.podcast-player {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(13, 6, 30, 0.35), rgba(13, 6, 30, 0.82)),
    url("../images/event.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.podcast-cover {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
}

.track-list {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}

.track-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-bar {
  position: relative;
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.track-bar::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 47, 146, 0.85);
}

.track-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.podcast-copy p:last-of-type {
  margin: 22px 0 30px;
  color: var(--muted);
}

.newsletter {
  padding: 36px 0;
  background: var(--surface);
  color: var(--surface-text);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.newsletter-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-transform: uppercase;
}

.newsletter-copy p:last-child {
  margin-top: 10px;
  color: rgba(22, 13, 36, 0.72);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(22, 13, 36, 0.18);
  background: #fff;
  color: var(--surface-text);
}

.newsletter-form button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  background: var(--surface-text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news {
  overflow: hidden;
}

.news-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 37, 0.56), rgba(18, 8, 37, 0.94)),
    url("../images/club.jpg") center/cover no-repeat;
}

.news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  background: rgba(15, 7, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-card img {
  aspect-ratio: 16 / 10;
}

.news-card-body {
  padding: 22px;
}

.news-card h3 {
  margin-top: 10px;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.news-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.contact-strip {
  background:
    linear-gradient(135deg, rgba(83, 188, 255, 0.08), rgba(255, 47, 146, 0.08)),
    var(--bg-deep);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.contact-copy p:last-child {
  margin-top: 18px;
  max-width: 620px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #090412;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .social-rail {
    display: none;
  }

  .hero-grid,
  .bio-grid,
  .release-grid,
  .podcast-grid,
  .newsletter-inner,
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .bio-copy,
  .podcast-copy,
  .contact-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-shot {
    left: 8%;
    right: 0;
  }

  .social-panel-wrap {
    position: static;
    padding: 26px 0 0;
  }

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

  .events-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-links {
    position: fixed;
    inset: 120px 14px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 7, 24, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-frame {
    left: 4%;
    top: 6%;
    width: 74%;
    height: 54%;
  }

  .hero-shot {
    left: 12%;
    width: 80%;
  }

  .hero-note {
    left: 0;
    right: 0;
    bottom: 18px;
    max-width: 100%;
  }

  .bio-media {
    min-height: 460px;
  }

  .bio-card {
    left: 20px;
  }

  .photo-wall {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .wall-tile:nth-child(2),
  .wall-tile:nth-child(9),
  .wall-tile:nth-child(4),
  .wall-tile:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }

  .social-panel {
    padding: 28px;
  }

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 88px 0;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar-status {
    font-size: 0.58rem;
  }

  .nav {
    top: 34px;
  }

  .nav-inner {
    min-height: 72px;
  }

  .hero-actions,
  .social-panel-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-shot {
    left: 0;
    width: 100%;
  }

  .hero-frame {
    width: 82%;
    height: 56%;
  }

  .bio-media {
    min-height: 380px;
  }

  .bio-card {
    left: 0;
    width: 100%;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
