* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(190, 105, 190, 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(100, 91, 255, 0.18), transparent 30%),
    #050711;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: rgba(5, 7, 17, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 22px;
  letter-spacing: 8px;
  line-height: 1;
}

.logo small {
  font-size: 12px;
  letter-spacing: 12px;
}

.mark {
  color: #e59bbd;
  letter-spacing: -4px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d8d2df;
}

nav a:hover {
  color: #f0a6c6;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 8% 7%;
  background:
    linear-gradient(90deg, rgba(5,7,17,0.98) 0%, rgba(5,7,17,0.74) 48%, rgba(5,7,17,0.35) 100%),
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 7px;
  color: #f0a6c6;
  font-size: 13px;
}

.center {
  text-align: center;
}

h1 {
  font-size: clamp(52px, 9vw, 120px);
  margin: 14px 0;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
}

h2 {
  text-align: center;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 300;
  margin: 10px 0 36px;
}

h3 {
  font-size: 42px;
  margin: 0 0 8px;
}

.tagline {
  font-size: 24px;
  line-height: 1.45;
  color: #eee8f2;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid rgba(245,166,202,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #d77d93, #5c3f9d);
  border: 0;
}

.btn.secondary {
  background: rgba(255,255,255,0.04);
}

.btn.small {
  margin-top: 18px;
  padding: 13px 18px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.section {
  padding: 85px 6%;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.artist-card {
  min-height: 360px;
  display: flex;
  align-items: end;
  border-radius: 22px;
  padding: 38px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 70px rgba(0,0,0,0.34);
}

.artist-card > div {
  max-width: 520px;
}

.artist-card.sevron {
  background:
    linear-gradient(90deg, rgba(6,8,18,0.96), rgba(6,8,18,0.35)),
    url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1400&q=80');
}

.artist-card.dawlight {
  background:
    linear-gradient(90deg, rgba(6,8,18,0.92), rgba(6,8,18,0.2)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80');
}

.artist-tag {
  color: #f0a6c6;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
}

.artist-card p,
.narrow p,
.release-card p {
  color: #e8e1ec;
  line-height: 1.6;
  font-size: 17px;
}

.release-card {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
}

.cover {
  width: 170px;
  height: 170px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 72px;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, #f0a6c6, #5c3f9d, #0b1024);
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.email {
  color: #f0a6c6;
  font-size: 22px;
}

footer {
  padding: 30px 6%;
  text-align: center;
  color: #aaa3b4;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .release-card {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    letter-spacing: 6px;
  }
}
