/* saw//tell — band landing */

:root {
  --bg: #0d0c0c;
  --surface: #161414;
  --text: #e8e4e1;
  --text-muted: #9a948e;
  --accent: #c4a574;
  --accent-hover: #d4b888;
  --border: rgba(228, 220, 212, 0.12);
  --bandcamp: #1da0c3;
  --spotify: #1db954;
  --youtube: #ff0000;
  --apple: #fa243c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

/* Background image — single/album artwork */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so text stays readable */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(13, 12, 12, 0.72);
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 3rem;
}

.hero {
  text-align: center;
}

.band-name {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
}

.band-name .slash {
  color: var(--accent);
  font-style: italic;
  opacity: 0.9;
}

.tagline {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listen {
  width: 100%;
  max-width: 28rem;
  text-align: center;
}

.listen-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.platform-link:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(228, 220, 212, 0.2);
  transform: translateY(-1px);
}

.platform-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.platform-link:focus:not(:focus-visible) {
  outline: none;
}

.platform-bandcamp:hover { border-color: var(--bandcamp); }
.platform-spotify:hover { border-color: var(--spotify); }
.platform-youtube:hover { border-color: var(--youtube); }
.platform-apple:hover { border-color: var(--apple); }

.platform-icon {
  font-size: 1rem;
  opacity: 0.85;
}

.platform-name {
  white-space: nowrap;
}

.footer {
  margin-top: auto;
  padding-top: 2rem;
}

.copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
