:root {
  color-scheme: dark;
  --bg: #101214;
  --surface: #17191d;
  --surface-strong: #20242a;
  --ink: #fffaf1;
  --muted: #c7bca7;
  --soft: #948977;
  --line: rgba(255, 250, 241, 0.13);
  --panel: rgba(255, 250, 241, 0.07);
  --gold: #d8aa56;
  --sage: #86a69c;
  --red: #9d4d45;
  --black: #08090a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(216, 170, 86, 0.14), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(134, 166, 156, 0.15), transparent 28rem),
    linear-gradient(180deg, #111418 0%, #0f1012 56%, #141110 100%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 250, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.06) 1px, transparent 1px);
  background-size: 5rem 5rem;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(16, 18, 20, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(216, 170, 86, 0.5);
  border-radius: 8px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.nav-links {
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(22rem, 1.18fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(100vh - 4.3rem);
  padding: clamp(1.8rem, 5vw, 5.5rem) clamp(1rem, 5vw, 4.5rem) clamp(1.2rem, 3vw, 2rem);
}

.hero-media {
  position: relative;
  min-height: clamp(28rem, 49vw, 42rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08080a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0), rgba(8, 8, 10, 0.24)),
    linear-gradient(90deg, rgba(8, 8, 10, 0.2), transparent 48%);
}

.artist-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.record {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  width: min(34vw, 11rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 1.2rem, #111 1.25rem 2rem, transparent 2.05rem),
    repeating-radial-gradient(circle, #08080a 0 0.7rem, #17171b 0.75rem 1.05rem);
  opacity: 0.84;
  animation: spin 16s linear infinite;
}

.record span {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 50%;
}

.lyric-card {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 5.8rem;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(12px);
}

.lyric-card p {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.35;
  font-weight: 750;
}

.waveform {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.45rem;
  align-items: end;
  height: 3.4rem;
}

.waveform span {
  border-radius: 99px;
  background: linear-gradient(var(--gold), var(--red));
  animation: pulse 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 24%; }
.waveform span:nth-child(2) { height: 58%; animation-delay: 0.08s; }
.waveform span:nth-child(3) { height: 36%; animation-delay: 0.16s; }
.waveform span:nth-child(4) { height: 82%; animation-delay: 0.24s; }
.waveform span:nth-child(5) { height: 48%; animation-delay: 0.32s; }
.waveform span:nth-child(6) { height: 68%; animation-delay: 0.4s; }
.waveform span:nth-child(7) { height: 28%; animation-delay: 0.48s; }
.waveform span:nth-child(8) { height: 76%; animation-delay: 0.56s; }
.waveform span:nth-child(9) { height: 42%; animation-delay: 0.64s; }
.waveform span:nth-child(10) { height: 62%; animation-delay: 0.72s; }

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1.05rem;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 47rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 47rem;
}

.profile-meta span {
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  color: #efe6d7;
  background: rgba(255, 250, 241, 0.06);
  font-size: 0.82rem;
  font-weight: 760;
}

.hero-quote {
  max-width: 38rem;
  margin: 0.2rem 0 0;
  border-left: 3px solid var(--gold);
  padding: 0.15rem 0 0.2rem 1rem;
  color: #f4eadc;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 750;
}

.hero-actions {
  margin-top: 0.35rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.primary-button,
.secondary-button,
.track-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 6px;
  padding: 0 1.15rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button,
.track-note a {
  color: var(--black);
  background: var(--gold);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 248, 237, 0.08);
}

.primary-button:hover,
.secondary-button:hover,
.track-note a:hover {
  transform: translateY(-2px);
}

.secondary-button:hover {
  border-color: rgba(216, 170, 86, 0.65);
  background: rgba(255, 250, 241, 0.12);
}

.intro-strip,
.about-section,
.music-section,
.works-section,
.social-section {
  margin-inline: clamp(1rem, 5vw, 4.5rem);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.intro-strip article {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
  background: rgba(255, 250, 241, 0.055);
}

.intro-strip strong {
  color: #fff4e1;
}

.intro-strip span,
.about-copy,
.track-note p,
.work-card p,
.social-section p,
.social-card span {
  color: var(--muted);
  line-height: 1.6;
}

.about-section,
.social-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.about-section h2,
.section-heading h2,
.social-section h2 {
  max-width: 14ch;
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
}

.about-copy {
  display: grid;
  gap: 1rem;
  font-size: 1.02rem;
}

.music-section,
.works-section,
.gallery-section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--line);
}

.gallery-section {
  margin-inline: clamp(1rem, 5vw, 4.5rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #08080a;
  aspect-ratio: 4 / 3;
  transition: border-color 220ms ease, transform 220ms ease;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item:hover {
  border-color: rgba(216, 170, 86, 0.55);
  transform: translateY(-2px);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(20rem, 1.28fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.5rem;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 24rem);
  gap: 1rem;
}

.video-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, border-color 180ms ease;
}

.video-cover img,
.video-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.video-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.08), rgba(8, 9, 10, 0.42)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34));
}

.video-cover:hover {
  border-color: rgba(216, 170, 86, 0.72);
  transform: translateY(-3px);
}

.video-cover:hover img,
.video-cover:hover video {
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.025);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(4rem, 8vw, 5.6rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 50%;
  background: rgba(216, 170, 86, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.play-button::after {
  position: absolute;
  top: 50%;
  left: 54%;
  content: "";
  border-block: 0.8rem solid transparent;
  border-left: 1.15rem solid var(--black);
  transform: translate(-50%, -50%);
}

.track-note,
.work-card,
.social-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.085), rgba(255, 250, 241, 0.045));
}

.track-note {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.3rem;
}

.track-note span,
.work-card span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.track-note h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.work-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.work-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 13.5rem;
  padding: 1.15rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.work-card h3 {
  font-size: 1.45rem;
}

.work-card:hover {
  border-color: rgba(134, 166, 156, 0.54);
  background:
    linear-gradient(180deg, rgba(134, 166, 156, 0.14), rgba(255, 250, 241, 0.045));
  transform: translateY(-3px);
}

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

.social-section > div:first-child {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

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

.social-card {
  display: grid;
  gap: 0.4rem;
  min-height: 7.4rem;
  padding: 1.1rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover {
  border-color: rgba(216, 170, 86, 0.8);
  background:
    linear-gradient(180deg, rgba(216, 170, 86, 0.13), rgba(255, 250, 241, 0.045));
  transform: translateY(-3px);
}

.social-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1rem, 5vw, 4.5rem);
  color: var(--muted);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .hero,
  .about-section,
  .video-layout,
  .social-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .work-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .hero {
    padding-top: 1.2rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .nav-links,
  .site-footer {
    display: grid;
    justify-items: start;
  }

  .hero {
    min-height: auto;
    gap: 1.25rem;
  }

  .hero-media {
    min-height: 26rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .intro-strip,
  .work-grid,
  .social-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .profile-meta span {
    width: 100%;
  }
}
