:root {
  --bb-black: #050505;
  --bb-panel: #101010;
  --bb-panel-soft: rgba(255, 255, 255, 0.075);
  --bb-ink: #202020;
  --bb-muted: #b9b9b9;
  --bb-red: #c20404;
  --bb-red-dark: #8f0202;
  --bb-gold: #caa66a;
  --bb-line: rgba(255, 255, 255, 0.16);
  --bb-smoke: #18212a;
  --bb-radius: 8px;
  --bb-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --bb-content: 1080px;
}

body {
  background: var(--bb-black);
  color: var(--bb-ink);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101010;
  font-family: Tahoma, Helvetica, Arial, sans-serif;
  line-height: 1.18;
}

a {
  color: var(--bb-red);
}

a:hover {
  color: var(--bb-red-dark);
}

a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid rgba(194, 4, 4, 0.45);
  outline-offset: 3px;
  box-shadow: none;
}

.skip-link {
  background: #ffffff;
  border: 2px solid var(--bb-red);
  color: #111111;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  position: absolute;
  top: 1rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.navbar {
  min-height: 78px;
  padding: 0.35rem 0;
}

.navbar-brand img {
  height: 64px;
  width: auto;
}

.navbar-dark .navbar-nav .nav-link {
  color: #f2f2f2;
  font-weight: 700;
  padding-inline: 0.85rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ff3b3b;
}

.social-nav {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.social-nav a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  text-decoration: none;
  width: 2.25rem;
}

.social-nav a:hover {
  background: var(--bb-red);
  border-color: var(--bb-red);
  color: #ffffff;
}

.hero {
  background: radial-gradient(circle at top right, rgba(194, 4, 4, 0.22), transparent 26rem), #000000;
  color: #ffffff;
  overflow: hidden;
}

.hero .container {
  max-width: 1400px;
  padding: 0;
  position: relative;
}

.hero-image {
  display: block;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  width: 100%;
}

.hero-copy {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  bottom: 0;
  left: 0;
  max-width: 720px;
  padding: clamp(2rem, 6vw, 5rem);
  position: absolute;
  top: 0;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: 6rem;
  margin-bottom: 1rem;
}

.hero-copy p:not(.eyebrow) {
  color: #ededed;
  font-size: 1.2rem;
  max-width: 32rem;
}

.eyebrow {
  color: var(--bb-red);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.section {
  background: radial-gradient(circle at top right, rgba(194, 4, 4, 0.18), transparent 24rem), #050505;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
  color: #eeeeee;
  max-width: var(--bb-content);
  padding: clamp(1.25rem, 4vw, 3rem);
}

.content-shell h1,
.content-shell h2,
.content-shell h3,
.content-shell h4,
.content-shell h5,
.content-shell h6 {
  color: #ffffff;
}

.content-shell p,
.content-shell li {
  color: #eeeeee;
}

.content-shell strong {
  color: #ffffff;
}

.content-shell a {
  color: #ff4b4b;
}

.content-shell a:hover {
  color: #ff7676;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.featured-news {
  border-left: 4px solid var(--bb-red);
  margin-bottom: 2rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

time {
  color: var(--bb-muted);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.preview-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.preview-card,
.archive-entry,
.contact-card,
.article-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  color: #eeeeee;
  overflow: hidden;
}

.preview-card h3,
.archive-entry h3,
.contact-card h2,
.article-panel h1 {
  color: #ffffff;
}

.preview-card p,
.archive-entry p,
.contact-card p,
.article-panel p {
  color: #eeeeee;
}

.preview-card {
  display: block;
}

.preview-card img {
  display: block;
  height: auto;
  width: 100%;
}

.preview-copy,
.archive-entry,
.contact-card,
.article-panel {
  padding: 1.25rem;
}

.text-link {
  font-weight: 800;
  text-decoration-thickness: 0.08em;
}

.news-cta {
  margin-top: 2rem;
  text-align: center;
}

.button,
.content-shell a.button {
  align-items: center;
  background: linear-gradient(180deg, #d70707, #a70303);
  border: 1px solid rgba(255, 94, 94, 0.55);
  border-radius: var(--bb-radius);
  box-shadow: 0 12px 28px rgba(194, 4, 4, 0.22);
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.content-shell a.button:hover {
  background: linear-gradient(180deg, #ef1717, #bd0404);
  border-color: rgba(255, 142, 142, 0.72);
  box-shadow: 0 16px 34px rgba(194, 4, 4, 0.32);
  color: #ffffff;
  transform: translateY(-1px);
}

.button:active,
.content-shell a.button:active {
  transform: translateY(0);
}

.album-link {
  align-items: center;
  border: 1px solid var(--bb-line);
  color: var(--bb-ink);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 86px 1fr;
  padding: 0.75rem;
  text-decoration: none;
}

.album-link img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 86px;
}

.album-link span {
  font-weight: 800;
}

.prose {
  max-width: 840px;
}

.prose img {
  border-radius: var(--bb-radius);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.content-shell > h1,
.article-panel > h1 {
  margin-bottom: 1.5rem;
}

.prose > * + * {
  margin-top: 1rem;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.discography-page {
  background: radial-gradient(circle at top right, rgba(194, 4, 4, 0.2), transparent 24rem), #050505;
}

.discography-shell {
  color: #ededed;
  max-width: 1120px;
}

.discography-heading {
  border-left: 4px solid var(--bb-red);
  margin-bottom: 2rem;
  max-width: 760px;
  padding-left: 1.25rem;
}

.discography-heading h1 {
  color: #ffffff;
  font-size: 3.25rem;
  margin-bottom: 0.75rem;
}

.discography-heading p {
  color: #cfcfcf;
  margin-bottom: 0;
}

.discography-list {
  display: grid;
  gap: 1.5rem;
}

.discography-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bb-radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  padding: 1.5rem;
}

.album-cover {
  margin: 0;
}

.album-cover img {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--bb-radius);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
  display: block;
  height: auto;
  max-width: 280px;
  width: 100%;
}

.album-details h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.discography-tracks {
  color: #f1f1f1;
  line-height: 1.65;
  margin: 0;
  padding-left: 1.35rem;
}

.discography-tracks li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
  padding-left: 0.25rem;
}

.discography-tracks li::marker {
  color: var(--bb-gold);
  font-weight: 800;
}

.album-note {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8d8d8;
  margin: 1.25rem 0 0;
  padding-top: 1rem;
}

.archive-jump {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.archive-jump a {
  border: 1px solid var(--bb-line);
  color: #ffffff;
  padding: 0.3rem 0.55rem;
  text-decoration: none;
}

.archive-jump a:hover {
  background: rgba(194, 4, 4, 0.2);
  color: #ffffff;
}

.archive-year {
  border-top: 1px solid var(--bb-line);
  padding-top: 2rem;
}

.archive-year + .archive-year {
  margin-top: 2rem;
}

.archive-list {
  display: grid;
  gap: 1rem;
}

.archive-media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0;
}

.archive-media img,
.article-media img {
  border-radius: var(--bb-radius);
  height: auto;
  width: 100%;
}

.article-media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.site-footer {
  background: #171717;
  color: #dcdcdc;
  padding: 2.5rem 0 1.5rem;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
  margin-right: 1rem;
}

.footer-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.back-to-top {
  background: var(--bb-red);
  border: 0;
  bottom: 1rem;
  color: #ffffff;
  font-weight: 800;
  opacity: 0;
  padding: 0.6rem 0.8rem;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(0.5rem);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 1030;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .social-nav {
    margin-top: 0;
  }

  .discography-card {
    align-items: start;
    grid-template-columns: 280px 1fr;
    padding: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .discography-tracks {
    column-count: 2;
    column-gap: 2.75rem;
  }
}

@media (max-width: 991.98px) {
  .hero-copy {
    background: rgba(0, 0, 0, 0.78);
    position: static;
  }

  .hero-copy h1 {
    font-size: 4.25rem;
  }

  .hero-image {
    min-height: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .album-cover img {
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 54px;
  }

  .content-shell {
    padding: 1rem;
  }

  .album-link {
    grid-template-columns: 1fr;
  }

  .album-link img {
    width: 100%;
  }

  .discography-card {
    padding: 1rem;
  }

  .discography-heading {
    padding-left: 1rem;
  }

  .discography-heading h1 {
    font-size: 2.45rem;
  }

  .archive-media,
  .article-media {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .footer-grid {
    display: block;
  }
}
