:root {
  --ink: #130d18;
  --paper: #fffaf0;
  --white: #fff;
  --night: #080b1f;
  --plum: #260619;
  --gold: #ffd033;
  --pink: #ff2f83;
  --cyan: #29d6ff;
  --spotify: #1ed760;
  --line: rgba(255, 255, 255, 0.22);
  --soft-line: rgba(19, 13, 24, 0.12);
  --shadow: rgba(6, 5, 12, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

a { color: inherit; }

button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 11, 31, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(100%, var(--max));
  min-height: 74px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: var(--night);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 0.95rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: Arial Black, Arial, sans-serif;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: #d8e1ff;
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-button {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  padding: 8px 12px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 12px;
  color: #f7f7ff;
  font-size: 0.88rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: rgba(255, 208, 51, 0.18);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 31, 0.95) 0%, rgba(38, 6, 25, 0.74) 48%, rgba(8, 11, 31, 0.36) 100%),
    image-set(url("/assets/img/cover-bobos.webp") type("image/webp"), url("/assets/img/cover-bobos.jpg") type("image/jpeg")) center / cover no-repeat;
  filter: saturate(1.08);
}

.hero-inner {
  position: relative;
  width: min(100%, var(--max));
  min-height: 78vh;
  margin: 0 auto;
  padding: 58px 20px 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.kicker,
.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.kicker {
  padding: 7px 11px;
  border: 1px solid rgba(255, 208, 51, 0.65);
  border-radius: 8px;
  background: rgba(8, 11, 31, 0.55);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3,
.brand strong {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 4.7rem;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2.1rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero p,
.page-hero p {
  max-width: 680px;
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: 2px solid transparent;
  padding: 12px 17px;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.spotify-button {
  background: var(--spotify);
  color: #07120a;
}

.page-hero .button.secondary,
.not-found .button.secondary {
  border-color: rgba(19, 13, 24, 0.28);
  color: var(--ink);
}

.hero-art {
  align-self: end;
  min-width: 0;
}

.hero-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}

.section,
.related,
.page-hero {
  padding: 70px 20px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.intro-band {
  background: var(--white);
}

.fact-grid,
.card-grid,
.related-grid,
.gallery-grid,
.spotify-track-grid {
  display: grid;
  gap: 18px;
}

.fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff7d7 100%);
}

.fact strong {
  display: block;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 2rem;
  color: var(--pink);
}

.fact span {
  font-weight: 800;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.related-card,
.thumb-card,
.timeline article,
.album-card,
.video-card,
.gallery-grid figure {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(19, 13, 24, 0.08);
}

.feature-card,
.related-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
}

.feature-card img,
.thumb-card img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.feature-card strong,
.related-card strong,
.thumb-card strong {
  font-family: Arial Black, Arial, sans-serif;
}

.feature-card span,
.related-card span,
.thumb-card span {
  color: #4d4654;
  line-height: 1.5;
}

.feature-card:hover,
.related-card:hover {
  border-color: rgba(255, 47, 131, 0.42);
  transform: translateY(-2px);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 11, 31, 0.95), rgba(38, 6, 25, 0.82)),
    image-set(url("/assets/img/hero-background.webp") type("image/webp"), url("/assets/img/hero-background.jpg") type("image/jpeg")) center / cover no-repeat;
}

.page-hero h1 {
  font-size: 3.5rem;
}

.page-portrait,
.page-wide-art {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 54px var(--shadow);
}

.page-portrait {
  aspect-ratio: 1 / 1;
}

.page-wide-art {
  aspect-ratio: 16 / 10;
}

.prose {
  max-width: 820px;
  font-size: 1.06rem;
  line-height: 1.75;
}

.timeline-band,
.clips-extra {
  background: #f6f2ea;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 22px;
}

.timeline article > strong {
  color: var(--pink);
  font-family: Arial Black, Arial, sans-serif;
  font-size: 1.7rem;
}

.album-grid {
  display: grid;
  gap: 24px;
}

.album-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  align-items: center;
}

.album-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  object-fit: cover;
}

.clean-list {
  margin: 16px 0 0;
  padding-left: 20px;
  line-height: 1.75;
}

.video-grid {
  display: grid;
  gap: 26px;
}

.video-card {
  overflow: hidden;
}

.video-card > div:last-child {
  padding: 22px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--night);
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.thumb-card {
  overflow: hidden;
  padding: 10px;
}

.thumb-card strong {
  display: block;
  padding: 12px 4px 4px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid figcaption {
  padding: 12px 14px 16px;
  font-weight: 800;
}

.related {
  background: var(--night);
  color: var(--white);
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.related-card span {
  color: #d9ddf2;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  border-radius: 8px;
  padding: 9px 11px;
  background: #f0edf7;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.spotify-band {
  background:
    linear-gradient(120deg, rgba(8, 11, 31, 0.96), rgba(18, 42, 35, 0.94)),
    image-set(url("/assets/img/cover-bobos.webp") type("image/webp"), url("/assets/img/cover-bobos.jpg") type("image/jpeg")) center / cover no-repeat;
  color: var(--white);
}

.spotify-band p {
  max-width: 720px;
  line-height: 1.7;
}

.spotify-panel {
  min-width: 0;
}

.spotify-frame {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #121212;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.spotify-track-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
}

.spotify-track-card {
  min-height: 96px;
  display: grid;
  gap: 12px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  text-decoration: none;
}

.spotify-track-card span {
  font-weight: 900;
  line-height: 1.25;
}

.spotify-track-card strong {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--spotify);
  color: #07120a;
  font-size: 0.82rem;
}

.album-actions {
  margin-top: 18px;
}

.site-footer {
  background: var(--plum);
  color: var(--white);
  padding: 42px 20px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.site-footer p {
  max-width: 620px;
  color: #f1dce8;
  line-height: 1.65;
}

.site-footer nav,
.footer-socials {
  display: flex;
  align-content: start;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.footer-socials {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.not-found {
  min-height: 58vh;
  color: var(--ink);
  background: linear-gradient(135deg, #fff6c9, #fff);
}

@media (min-width: 1200px) {
  h1 { font-size: 5.2rem; }
}

@media (max-width: 900px) {
  .menu-button { display: inline-flex; align-items: center; }
  .nav { align-items: flex-start; flex-wrap: wrap; }
  .nav-links {
    width: 100%;
    display: none;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .nav-links.is-open { display: flex; }
  .hero-inner,
  .split,
  .album-card {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding-top: 42px;
  }
  .hero-art {
    width: min(100%, 560px);
    margin: 0 auto;
  }
  h1,
  .page-hero h1 {
    font-size: 3.1rem;
  }
  .card-grid.three,
  .card-grid.four,
  .timeline,
  .gallery-grid,
  .related-grid,
  .spotify-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 66px;
    padding-inline: 14px;
  }
  .brand strong { font-size: 0.88rem; }
  .brand small { font-size: 0.68rem; }
  .hero,
  .hero-inner {
    min-height: 82vh;
  }
  .hero-inner {
    padding-inline: 16px;
  }
  h1,
  .page-hero h1 {
    font-size: 2.38rem;
  }
  h2 { font-size: 1.62rem; }
  .hero p,
  .page-hero p {
    font-size: 1rem;
  }
  .section,
  .related,
  .page-hero {
    padding: 48px 16px;
  }
  .card-grid.three,
  .card-grid.four,
  .fact-grid,
  .timeline,
  .gallery-grid,
  .related-grid,
  .spotify-track-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
}
