:root {
  color-scheme: dark;
  --bg: #070809;
  --bg-soft: #101010;
  --ink: #fff8ef;
  --muted: #c9b6a2;
  --line: rgba(255, 248, 239, 0.18);
  --panel: rgba(8, 8, 9, 0.72);
  --accent: #e9b787;
  --spotify: #1ed760;
  --apple: #f5f5f7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--accent);
  color: #080808;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.78), rgba(7, 8, 9, 0));
}

.brand {
  font-size: 1.08rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav a,
.socials a {
  color: rgba(255, 248, 239, 0.78);
  text-decoration: none;
}

.top-nav a:hover,
.socials a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 64px) 150px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("cover-photo.jpeg");
  background-position: 58% 44%;
  background-size: cover;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.9), rgba(7, 8, 9, 0.24) 58%, rgba(7, 8, 9, 0.12)),
    linear-gradient(180deg, rgba(7, 8, 9, 0.42), rgba(7, 8, 9, 0.08) 46%, rgba(7, 8, 9, 0.94));
}

.hero::after {
  z-index: -1;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.034) 0,
    rgba(255, 255, 255, 0.034) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: overlay;
  opacity: 0.36;
}

.hero-inner {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 8ch;
  margin-bottom: 24px;
  font-size: clamp(4.6rem, 15vw, 13rem);
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy,
.release-info p,
.merch-item p,
.tour-row p {
  color: rgba(255, 248, 239, 0.78);
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.45;
}

.hero-actions,
.stream-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.platform-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.primary {
  background: var(--ink);
  color: #090909;
}

.secondary,
.platform-link {
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.07);
  color: var(--ink);
}

.button:hover,
.platform-link:hover,
.listen-button:hover {
  transform: translateY(-2px);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 64px);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(30px, 5vw, 56px);
}

.release-section {
  background:
    linear-gradient(180deg, #070809 0%, #12100f 50%, #080808 100%);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(240px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
}

.album-art {
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.album-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.release-info {
  width: min(620px, 100%);
}

.track-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-info p {
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.55;
}

.spotify-link:hover {
  border-color: var(--spotify);
}

.apple-link:hover {
  border-color: var(--apple);
}

.dark-band {
  background: #0d0d0e;
}

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

.video-tile {
  min-height: 260px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.05), rgba(255, 248, 239, 0.02)),
    url("cover-photo.jpeg") center / cover;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.video-tile.wide {
  grid-column: span 2;
}

.play-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 248, 239, 0.58);
  border-radius: 50%;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: #090909;
}

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

.tour-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.tour-row time {
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
}

.tour-row p {
  margin-bottom: 0;
}

.tour-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.merch-section {
  padding-bottom: 160px;
  background: linear-gradient(180deg, #0f0c0b, #070809);
}

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

.merch-item {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  padding: 24px;
  background: rgba(255, 248, 239, 0.045);
}

.merch-item span {
  color: var(--accent);
  font-weight: 950;
}

.merch-item p {
  margin-bottom: 0;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 64px) 116px;
  border-top: 1px solid var(--line);
  background: #070809;
}

.site-footer p {
  margin-bottom: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.listen-bar {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 25;
  transform: translateX(-50%);
  width: min(860px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.listen-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 18px;
  text-decoration: none;
  font-size: clamp(0.86rem, 2vw, 1rem);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease;
}

.listen-button:focus-visible,
.button:focus-visible,
.platform-link:focus-visible,
.top-nav a:focus-visible,
.tour-row a:focus-visible {
  outline: 3px solid rgba(255, 248, 239, 0.46);
  outline-offset: 3px;
}

.spotify {
  background: var(--spotify);
  color: #07120a;
}

.apple {
  background: var(--apple);
  color: #09090a;
}

.service-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.service-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

  .release-grid,
  .split-section,
  .video-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .video-tile.wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
  }

  .hero {
    min-height: 94svh;
    padding: 90px 20px 140px;
  }

  .hero-bg {
    background-position: 63% 44%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 9, 0.58), rgba(7, 8, 9, 0.12) 44%, rgba(7, 8, 9, 0.96)),
      linear-gradient(90deg, rgba(7, 8, 9, 0.62), rgba(7, 8, 9, 0.08));
  }

  h1 {
    font-size: clamp(3.6rem, 21vw, 6.5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .section {
    padding: 64px 20px;
  }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .merch-section {
    padding-bottom: 150px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px 148px;
  }

  .listen-bar {
    grid-template-columns: 1fr;
    width: min(430px, calc(100% - 24px));
    padding: 10px;
  }

  .listen-button {
    min-height: 54px;
  }
}
