/* ── RESET & VARIABLES ── */
:root {
  --bg: #0d0b0a;
  --surface: #1a1614;
  --ink: #e6ddd0;
  --muted: #8a7e72;
  --accent: #e85d3a;
  --accent-dim: #b8472c;
  --rule: #2e2822;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f2ece4;
    --surface: #ffffff;
    --ink: #1a1614;
    --muted: #6b6358;
    --accent: #c94222;
    --accent-dim: #a8351c;
    --rule: #d4c9bc;
  }
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 100;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
.site-header {
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 3rem;
}
.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  padding: 3rem 0 4rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
}
.hero-name {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1.5rem;
}
.hero-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.social-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 0.35rem 0.75rem;
  transition: background 0.15s, color 0.15s;
}
.social-link:hover,
.social-link:focus-visible {
  background: var(--accent);
  color: var(--bg);
}

/* ── SECTIONS ── */
.section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.section:last-of-type {
  border-bottom: none;
}
.section-title {
  font-family: var(--font-mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

/* ── RELEASES ── */
.release-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.release {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.release-art {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background: var(--surface);
  border: 2px solid var(--rule);
  position: relative;
}
.release-art::after {
  content: "◆";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
}
.release-info {
  min-width: 0;
}
.release-title {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
}
.release-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.35rem;
}
.release-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
  line-height: 1.5;
}
.listen-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.listen-link:hover,
.listen-link:focus-visible {
  text-decoration: underline;
}

/* ── BIO ── */
.bio p {
  max-width: 55ch;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.bio-cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.bio-cta a {
  color: var(--accent);
}

/* ── SHOWS ── */
.show-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.show {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.show:last-child {
  border-bottom: none;
}
.show-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 5rem;
}
.show-venue {
  font-size: 0.9rem;
  flex: 1;
}
.show-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--muted);
  color: var(--muted);
}
.show-status:has(+ .show-status) { display: none; }

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 32rem;
}
.field {
  display: block;
  margin-bottom: 1rem;
}
.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  border: 2px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.btn {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover,
.btn:focus-visible {
  background: var(--accent-dim);
}
.form-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.muted { color: var(--muted); }
.attribution {
  font-size: 0.75rem;
  opacity: 0.7;
}
.attribution a {
  color: var(--muted);
  text-decoration: none;
}
.attribution a:hover {
  color: var(--accent);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── MOBILE ── */
@media (max-width: 40rem) {
  body { padding: 0 1rem; }
  .hero { padding: 2rem 0 3rem; }
  .release { flex-direction: column; }
  .release-art { width: 4rem; height: 4rem; }
  .site-footer { flex-direction: column; }
}
