
:root {
  --bg: #0b0d12;
  --panel: rgba(20, 24, 31, 0.92);
  --panel-soft: rgba(255,255,255,0.03);
  --text: #edf2f7;
  --muted: #a5afbc;
  --line: rgba(255,255,255,0.08);
  --accent: #27d6df;
  --accent-2: #7c6cff;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  --header-h: 72px;
  --footer-h: 70px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(124,108,255,0.14), transparent 28%),
    radial-gradient(circle at top left, rgba(39,214,223,0.10), transparent 30%),
    linear-gradient(180deg, #0b0d12 0%, #0f131a 100%);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.page-shell { min-height: 100vh; }
.section { padding: 2rem 0 1rem; }
.page-hero { padding: 1rem 0 0.5rem; }
.section-heading { margin-bottom: 1.2rem; }
.eyebrow {
  margin: 0 0 .35rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  color: var(--accent);
}
.section-note, .lede, .muted { color: var(--muted); }
.muted-inline { color: var(--muted); font-size: .92em; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .6rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: 1.08rem; }
p { margin: 0 0 1rem; }

.site-header {
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 17, 0.74);
  border-bottom: 1px solid var(--line);
}
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1rem;
  min-height: 44px;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-block; }
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}
.desktop-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem .9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(10, 12, 17, 0.92);
}
.mobile-menu-inner {
  display: grid;
  padding: .7rem 0 1rem;
  gap: .3rem;
}
.mobile-menu a {
  padding: .9rem 0;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }

.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: stretch;
  gap: 1.2rem;
  padding: 1.8rem 0 1.4rem;
}
.hero-home { min-height: min(76vh, 860px); }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}
.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1rem 0 0;
}
.meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .4rem .8rem;
  border: 1px solid rgba(39,214,223,.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.button.small { min-height: 40px; padding: .65rem .9rem; }
.button.primary {
  border: none;
  color: #09131a;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.button:hover { text-decoration: none; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prose, .stats, .feature-card, .archive-callout, .platform-card, .source-block, .music-card-body {
  padding: 1.15rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1rem;
}
.stats ul, .source-list, .archive-callout ul, .discography-card ul {
  margin: 0;
  padding-left: 1.15rem;
}
.stats li, .source-list li, .archive-callout li, .discography-card li {
  margin-bottom: .7rem;
}
.highlight-grid, .discography-grid, .platform-grid, .music-grid {
  display: grid;
  gap: 1rem;
}
.highlight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.discography-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.music-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card p, .platform-card p, .archive-callout p { color: var(--muted); }

.hero-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.slideshow-frame, .slide { height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.slide.is-active { opacity: 1; z-index: 2; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11,13,18,0.15), rgba(11,13,18,0.84));
  backdrop-filter: blur(6px);
}
.slide-dots {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .8rem;
  display: flex;
  gap: .45rem;
  justify-content: flex-end;
  z-index: 3;
}
.slide-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  padding: 0;
  cursor: pointer;
}
.slide-dots button.is-active { background: var(--accent); }

.timeline { padding: 1rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-year {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.expanded-gallery .gallery-item {
  padding: .8rem;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: .7rem;
}
.gallery-item figcaption { color: var(--muted); font-size: .92rem; }

.music-card {
  overflow: hidden;
}
.music-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.embed-card { padding: 1rem; }
.facebook-embed-shell {
  width: 100%;
  min-height: 720px;
  display: flex;
  justify-content: center;
}
.facebook-embed-shell iframe {
  max-width: 100%;
}
.compact li { overflow-wrap: anywhere; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 12, 17, 0.84);
  backdrop-filter: blur(14px);
}
.floating-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
}
.footer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--footer-h);
  text-align: center;
  color: var(--muted);
}

body {
  padding-top: calc(var(--header-h) + 18px);
  padding-bottom: calc(var(--footer-h) + 20px);
}



@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero, .two-col, .highlight-grid, .timeline-item, .music-grid, .discography-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding-right: 0; }
  .hero-slideshow { min-height: 420px; }
}

@media (max-width: 820px) {
  :root { --header-h: 74px; --footer-h: auto; }
  .floating-footer {
    position: static;
  }
  body {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 1rem));
  }
  .hero-home { min-height: auto; }
  .hero-slideshow { min-height: 360px; }
  .slide-overlay { inset: auto .7rem .7rem .7rem; }
  .footer-wrap { padding: 1rem 0 1.2rem; min-height: auto; }
}

.slide-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.slide-link:hover {
  text-decoration: none;
}
.slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
