/* ~sheesh — tilde.club homepage
   typography-first layout inspired by Spotify's lyrics view:
   monochrome greyscale, big bold type, emphasis driven by scroll
   position rather than color/decoration. */

:root {
  --bg: #0d0d0d;
  --text-past: #3a3a3a;
  --text-future: #707070;
  --text-active: #f5f5f5;
  --hero: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  padding: 0 1.5rem;
  background: var(--bg);
  font-family: var(--font);
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--hero);
  margin: 0;
}

.lyrics {
  max-width: 56rem;
  margin: 0 auto;
  padding-bottom: 50vh;
}

.lyrics p {
  font-size: clamp(1.5rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 3rem;
  color: var(--text-future);
  transition: color 300ms ease, opacity 300ms ease;
  text-transform: uppercase;
}

.lyrics p.is-past {
  color: var(--text-past);
}

.lyrics p.is-active {
  color: var(--text-active);
}

footer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--text-past);
  font-size: 0.85rem;
}

a {
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .lyrics p {
    transition: none;
  }
}
