:root{
  --bg:#050505;
  --card:#101010;
  --card-2:#151515;
  --text:#f5f5f0;
  --muted:#b8b8b0;
  --line:#272727;
  --gold:#c6a76a;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}
body{
  margin:0;
  min-width:0;
  width:100%;
  max-width:100%;
  background:
    radial-gradient(circle at 70% 8%, rgba(17,77,255,.15), transparent 31rem),
    radial-gradient(circle at 18% 28%, rgba(198,167,106,.06), transparent 28rem),
    var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.45;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.018;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom, black, transparent 60%);
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem clamp(1rem,4vw,3rem);
  background:rgba(5,5,5,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand{flex:0 1 auto;min-width:0}
.brand img{width:clamp(120px,18vw,190px)}
nav{
  display:flex;
  gap:clamp(.75rem,3vw,1.75rem);
  flex:0 0 auto;
}
nav a{
  color:var(--text);
  text-decoration:none;
  font-size:.95rem;
  opacity:.9;
  white-space:nowrap;
}

.section{
  width:min(1120px, calc(100% - 2rem));
  margin-inline:auto;
}

.hero{
  padding:clamp(2rem,6vw,5rem) 0 clamp(3rem,7vw,5.5rem);
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.92fr);
  gap:2rem;
  align-items:center;
}

.hero-copy{position:relative;z-index:2;min-width:0}
.eyebrow{
  margin:0 0 1rem;
  color:var(--gold);
  font-size:.75rem;
  letter-spacing:.36em;
  text-transform:uppercase;
  font-weight:800;
}

.hero-logo{
  width:min(510px,88%);
  margin:0 0 clamp(1.25rem,3vw,1.8rem);
}

h1,h2,h3,p{margin-top:0}
h1{
  max-width:690px;
  margin-bottom:1rem;
  font-size:clamp(2.85rem,6.5vw,5.25rem);
  line-height:.9;
  letter-spacing:-.06em;
  font-weight:900;
}

.lede{
  max-width:560px;
  margin-bottom:1.35rem;
  color:var(--muted);
  font-size:clamp(1rem,1.45vw,1.12rem);
}

.actions{display:flex;flex-wrap:wrap;gap:.85rem}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:45px;
  padding:.82rem 1.22rem;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  background:#151515;
  text-decoration:none;
  font-weight:850;
}
.button.primary{background:var(--text);color:#050505}

.hero-art{
  width:100%;
  max-height:390px;
  object-fit:contain;
  opacity:.72;
  filter:drop-shadow(0 22px 48px rgba(0,0,0,.5));
}

.panel{
  margin-bottom:clamp(3.5rem,7vw,6.5rem);
  padding:clamp(1.4rem,4vw,3rem);
  background:linear-gradient(135deg,rgba(18,18,18,.96),rgba(9,9,9,.96));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 22px 70px rgba(0,0,0,.24);
}

.panel h2{
  max-width:760px;
  margin-bottom:2rem;
  font-size:clamp(2rem,4.1vw,3.35rem);
  line-height:.95;
  letter-spacing:-.055em;
}

.listen-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(165px,1fr));
  gap:.75rem;
}
.listen-grid a{
  padding:1rem 1.1rem;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--card-2);
  color:var(--text);
  text-decoration:none;
  font-weight:850;
}
.listen-grid a.featured{
  background:var(--text);
  color:#050505;
}

.about{
  margin-bottom:clamp(3.5rem,7vw,6.5rem);
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(2rem,6vw,5rem);
  align-items:start;
}
.about h2,.releases h2{
  font-size:clamp(2.35rem,5.5vw,4.55rem);
  line-height:.9;
  letter-spacing:-.06em;
}
.about-text p{
  color:var(--muted);
  font-size:1.06rem;
}
.members{
  margin:2rem 0 0;
}
.members div{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid var(--line);
}
dt{font-weight:900}
dd{margin:0;color:var(--muted)}

.releases{
  margin-bottom:clamp(3.5rem,7vw,6.5rem);
}
.releases h2{margin-bottom:1.5rem}
.release-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.release-card{
  overflow:hidden;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
}
.release-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#111;
}
.release-card div{padding:1rem}
.release-card h3{
  margin-bottom:.3rem;
  font-size:1.15rem;
}
.release-card p{margin:0;color:var(--muted);font-size:.92rem}

.site-footer{
  padding:clamp(3rem,7vw,5rem) 1rem;
  text-align:center;
  color:var(--muted);
}
.site-footer img{
  width:min(280px,70vw);
  margin:0 auto 1rem;
}
.site-footer p{margin:.35rem 0}

@media (max-width:760px){
  .site-header{
    padding:.9rem .9rem;
  }
  .brand img{width:116px}
  nav{gap:.85rem}
  nav a{font-size:.9rem}

  .section{width:min(100% - 1.2rem, 1120px)}
  .hero{
    display:block;
    padding-top:1.6rem;
    padding-bottom:2.55rem;
  }
  .hero-logo{width:92%;max-width:365px}
  h1{
    font-size:clamp(2.48rem,13.2vw,4rem);
    line-height:.9;
    max-width:100%;
  }
  .lede{
    margin-bottom:1.15rem;
  }
  .hero-art{
    margin:.85rem 0 0 auto;
    width:82%;
    max-height:175px;
    opacity:.62;
  }

  .panel{
    border-radius:22px;
    padding:1.25rem;
  }
  .panel h2{
    font-size:clamp(1.78rem,8.6vw,2.7rem);
  }
  .listen-grid{
    grid-template-columns:1fr;
  }
  .listen-grid a{
    min-height:52px;
  }

  .about{
    display:block;
  }
  .about h2,.releases h2{
    font-size:clamp(2.25rem,10.8vw,3.45rem);
  }
  .members div{
    grid-template-columns:1fr;
    gap:.25rem;
  }

  .release-grid{
    grid-template-columns:1fr;
    gap:1rem;
  }
  .release-card{
    border-radius:18px;
  }
  .release-card img{
    max-height:360px;
  }
}

@media (max-width:380px){
  nav{gap:.65rem}
  nav a{font-size:.82rem}
  .brand img{width:105px}
  h1{font-size:clamp(2.35rem,12.5vw,3.75rem)}
}


/* V5.3.1 overflow hardening */
html, body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header,
.section,
.hero,
.panel,
.release-grid,
.release-card {
  max-width: 100%;
}

.release-card img {
  width: 100%;
  display: block;
}
