:root {
  --bg: #0a0908;
  --bg-alt: #17140f;
  --fg: #f2ede6;
  --fg-muted: #a8a29b;
  --accent: #d9480f;
  --border: #2a241c;
  --max-width: 1100px;

  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-24: 6rem;
}

html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Impact, "Arial Narrow Bold", "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--accent); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 9, 8, 0.75); /* ponytail: matches --bg; update together if --bg changes */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--fg);
}
.nav-logo span { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); text-decoration: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(23, 20, 15, 0.99); /* ponytail: matches --bg-alt; update together if --bg-alt changes */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 10;
  }
  .nav-links.open { display: flex; }
}

/* Hero (home only) */
.hero { border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-photo {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}
@media (max-width: 600px) {
  .hero-photo {
    aspect-ratio: 5 / 4;
    max-height: none;
    object-position: center 15%;
    transform: scale(1.12);
  }
}
.hero-content {
  padding: var(--space-16) var(--space-6);
  text-align: center;
}
.hero .tagline { color: var(--fg-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* Page header (inner pages) */
.page-header {
  padding: var(--space-12) var(--space-6) var(--space-8);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); }
.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.hero .platform-links { margin-top: var(--space-14); }
.platform-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.platform-links a:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: #b93a0d; text-decoration: none; }

/* Sections */
.section { padding: var(--space-16) var(--space-6); }
.section-alt { background: var(--bg-alt); }

/* Card grid: albums, shows, shop */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
}
/* Shop teaser carousel (home) */
.shop-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.shop-carousel .card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.shop-carousel::-webkit-scrollbar { height: 8px; }
.shop-carousel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.card-grid-stack {
  flex-direction: column;
  align-items: center;
}
.card-grid-stack .card { flex: 0 0 auto; width: 100%; max-width: 500px; }
.card {
  flex: 0 1 260px;
  scroll-margin-top: 5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: var(--space-5);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
@media (max-width: 480px) {
  .card { flex-basis: 100%; }
}
.card h3 { color: var(--fg); font-size: 1.2rem; }
.card .price { color: var(--accent); font-weight: 700; }
.card-grid-stack .card p { color: var(--fg-muted); }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.card-actions a {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 1rem; }
/* Press reviews (media page) */
.press-review {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.press-review h4 { color: var(--fg); font-size: 1.1rem; margin-bottom: 0.75rem; }
.press-meta { color: var(--fg-muted); font-weight: 400; font-size: 0.9rem; text-transform: none; letter-spacing: normal; }
.press-byline { color: var(--fg-muted); font-style: italic; text-align: right; }

.credits {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.credits summary {
  display: inline-block;
  cursor: pointer;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.credits summary:hover { border-color: var(--accent); }
.credits p { margin: 0.5rem 0; }
.credits ul { margin: 0.5rem 0 0; padding-left: 1.2rem; }
.credits li { margin-bottom: 0.25rem; }
.card form { margin-top: 0.75rem; }
.card select {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.4rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.photo-grid img:hover { filter: grayscale(0); transform: scale(1.05); }
.photo-grid a { cursor: zoom-in; }

/* Lightbox (CSS-only, via :target) */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
.lightbox:target { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1;
  color: var(--fg);
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--fg);
  font-size: 3rem;
  line-height: 1;
  text-decoration: none;
  padding: 0.5rem 1rem;
  user-select: none;
}
.lightbox-nav:hover { color: var(--accent); text-decoration: none; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
@media (max-width: 600px) {
  .lightbox-nav { font-size: 2.25rem; padding: 0.5rem 0.6rem; }
}

/* Bio grid */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
.bio-grid img { border-radius: 4px; margin-bottom: 1rem; filter: grayscale(1); }

/* Notice banner (shows/shop disclaimers) */
.notice {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: var(--space-12) var(--space-6) var(--space-8);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--fg-muted);
}
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}
.site-footer p { font-size: 0.85rem; margin: 0; }
.site-footer .credit { font-size: 0.7rem; opacity: 0.8; margin-top: 0.25rem; }
.site-footer .credit img { display: block; height: 32px; width: auto; margin: 0.25rem auto 0; opacity: 0.8; }

/* Press pull-quote (home) */
.pull-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
}
.pull-quote::before, .pull-quote::after {
  color: var(--accent);
  font-size: 2.5rem;
  font-style: normal;
  line-height: 0;
  vertical-align: -0.3em;
}
.pull-quote::before { content: "\201C"; margin-right: 0.15em; }
.pull-quote::after { content: "\201D"; margin-left: 0.15em; }

/* Latest release (home) */
.release { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.release img { width: 140px; flex-shrink: 0; }

audio { width: 100%; margin-top: 0.5rem; }
iframe.video-embed { width: 100%; aspect-ratio: 16/9; border: none; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Audio player (hero) */
.floating-player {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-top: 2rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: rgba(10, 9, 8, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.player-toggle {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.player-toggle:hover { background: #b93a0d; }
.player-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  overflow: hidden;
}
.player-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
}
.player-track {
  font-size: 0.85rem;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.player-mute {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
}
.player-prev,
.player-next {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.25rem;
}
.player-prev:hover,
.player-next:hover { color: var(--fg); }
.player-mute:hover { color: var(--fg); }
@media (max-width: 480px) {
  .floating-player { padding: 0.4rem 0.8rem 0.4rem 0.4rem; gap: 0.5rem; }
  .player-track { max-width: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
