:root {
  --cream: #f2e9d8;
  --ink: #1a1613;
  --teal: #2fb0a3;
  --orange: #e5572b;
  --yellow: #f2b035;
  --paper: #17130f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--paper);
  color: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background:
    repeating-linear-gradient(115deg,
      transparent 0 60px,
      rgba(47, 176, 163, 0.06) 60px 62px);
}

.logo {
  font-family: "Righteous", sans-serif;
  font-size: clamp(3.5rem, 14vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  padding-bottom: 0.15em;
  background: linear-gradient(100deg, var(--yellow), var(--orange) 55%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #cbb9a0;
}

/* Albums */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.album {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem;
  border: 2px solid rgba(242, 233, 216, 0.12);
  border-radius: 14px;
  background: rgba(242, 233, 216, 0.03);
}

.album-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.album-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--teal);
}

.album-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 0.95;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

.album-blurb {
  font-style: italic;
  color: #cbb9a0;
  margin-bottom: 1.25rem;
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.spotify-btn:hover { transform: translateY(-2px); background: #ff6a3c; }
.spotify-mark { font-size: 0.85rem; }

.tracklist {
  margin-top: 1.5rem;
  list-style: none;
  counter-reset: track;
}

.tracklist li {
  counter-increment: track;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(242, 233, 216, 0.15);
  display: flex;
  gap: 0.85rem;
}

.tracklist li::before {
  content: counter(track, decimal-leading-zero);
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  min-width: 1.75rem;
}

.tracklist .t { display: flex; flex-direction: column; }
.tracklist .t-song { font-weight: 600; color: var(--cream); }
.tracklist .t-artist { font-size: 0.85em; color: #8f8069; }

.tracklist-soon {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(242, 233, 216, 0.25);
  border-radius: 8px;
  color: #cbb9a0;
  font-style: italic;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: #8f8069;
  font-size: 0.9rem;
  border-top: 1px solid rgba(242, 233, 216, 0.1);
}

@media (max-width: 640px) {
  .album {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .album-art { max-width: 320px; margin: 0 auto; }
}
