:root {
  --ink: #070707;
  --ink-soft: #10100f;
  --paper: #d7d0c4;
  --paper-soft: #9f9990;
  --accent: #a82a20;
  --line: rgba(215, 208, 196, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 7%, rgba(168, 42, 32, 0.12), transparent 26rem),
    var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.065;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  right: -20vw;
  bottom: -35vw;
  width: 75vw;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(168, 42, 32, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 180px rgba(168, 42, 32, 0.08);
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
  width: min(100%, 96rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 5.25rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
  padding-inline: 0.22em;
}

.eyebrow,
.release-number,
footer {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.13em;
}

.hero {
  display: grid;
  gap: 2.5rem;
  min-height: calc(100svh - 5.25rem);
  padding-block: clamp(2rem, 8vw, 7rem) 3rem;
}

.hero-art {
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line);
}

.hero-art__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: reveal 1.2s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-copy {
  align-self: end;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--paper-soft);
}

h1 {
  margin: 0;
  font-size: clamp(4.35rem, 23vw, 10.5rem);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.release-lockup {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.release-title {
  margin: 0;
  font-size: clamp(1.65rem, 7vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.release-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.35rem 0 0;
  color: var(--paper-soft);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.release-status span {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(168, 42, 32, 0.12);
}

.release-number {
  margin: 0 0 0.2rem;
  color: var(--paper-soft);
}

.connect,
.streaming {
  padding-block: clamp(5rem, 14vw, 10rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.tagline {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 9vw, 5.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.35rem;
  padding-inline: 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.05rem, 4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.social-list a span:last-child {
  color: var(--paper-soft);
  font-size: 0.9em;
  transition: transform 180ms ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  padding-inline: 1rem;
  color: var(--ink);
  outline: none;
  background: var(--paper);
}

.social-list a:hover span:last-child,
.social-list a:focus-visible span:last-child {
  color: var(--ink);
  transform: translate(0.2rem, -0.2rem);
}

.streaming {
  display: grid;
  gap: 3rem;
}

.streaming-note {
  max-width: 24rem;
  margin: 0;
  color: var(--paper-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.streaming-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.streaming-list li {
  padding: 0.8rem 1rem;
  color: var(--paper-soft);
  border: 1px solid var(--line);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: space-between;
  padding-block: 2rem;
  color: var(--paper-soft);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 52rem) {
  .hero {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(29rem, 1.2fr);
    align-items: stretch;
  }

  .connect,
  .streaming {
    display: grid;
    grid-template-columns: minmax(17rem, 0.8fr) minmax(28rem, 1.2fr);
    gap: 5rem;
  }

  .section-heading {
    margin-bottom: 0;
  }

  .streaming-list {
    align-content: start;
    justify-content: flex-end;
  }

  footer {
    flex-direction: row;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
