:root {
  --bg: #070709;
  --fg: #eaeaec;
  --muted: #b3b3bd;
  --accent: #e50914;
  --accent-2: #2b5cff;
  --maxw: 1120px;
}

html,
body {
  width: 100%;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.logo-white {
  max-width: 680px;
  height: auto;
  width: min(75%, 680px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  background: url('/assets/background.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.65) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  animation: cibFadeHero 900ms ease-out forwards;
  animation-delay: 120ms;
}

@keyframes cibFadeHero {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
    opacity: 0;
  }
}

.badge {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .375rem .625rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--muted);
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, .35);
}

.title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  margin: 1rem 0 .5rem;
  text-shadow: 0 10px 30px rgba(229, 9, 20, .15);
}

.subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--fg);
  max-width: 60ch;
  margin: 0 auto 1.5rem;
}

.cta {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn {
  background: none;
  border: none;
  padding: .4rem .8rem;
  color: var(--fg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .3s ease;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .5);
}

.btn:hover {
  transform: translateY(-2px);
  text-shadow: 0 6px 18px rgba(229, 9, 20, .6);
}

.btn:active {
  transform: translateY(0);
}

section {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 .75rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.1fr .9fr;
  }
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.press-item {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  transition: border-color .3s ease;
}

.press-item:hover {
  border-color: var(--accent-2);
}

.press-item a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  text-decoration: none;
}

.press-item a:hover {
  color: var(--accent);
}

.press-item p {
  font-size: .9rem;
  color: var(--muted);
  margin-top: .3rem;
}


.spotify-embed {
  width: 100%;
  min-height: 152px;
  border: 0;
  border-radius: 12px;
}

.spotify-embed.tall {
  min-height: 352px;
}

.instagram-embed {
  border: none;
  width: 100%;
  border-radius: 1em;
  height: 25rem;
}

.footer {
  padding: 48px 0 56px;
  color: var(--muted);
  text-align: center;
  font-size: .95rem;
}

.about-photo {
  border-radius: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}