
:root{
  --bg:#070707;
  --gold:#c9913d;
  --cream:#f2e8d6;
  --muted:#bcb2a1;
}
*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--cream);
  font-family:Arial,Helvetica,sans-serif;
}
.hero{
  position:relative;
  min-height:38rem;
  overflow:hidden;
  border-bottom:2px solid var(--gold);
}
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 52%;
}
.hero-shade{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.43);
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1480px;
  margin:auto;
  padding:2.5rem 3rem;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:2rem;
}
.brand-name{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(2rem,3vw,3.2rem);
  line-height:1.08;
}
.brand-role{
  margin-top:.9rem;
  color:var(--gold);
  font-size:.9rem;
  letter-spacing:.08em;
}
.nav{
  display:flex;
  gap:2.2rem;
  flex-wrap:wrap;
}
.nav a{
  color:var(--cream);
  text-decoration:none;
  font-size:.95rem;
  letter-spacing:.04em;
  padding-bottom:.45rem;
}
.nav a.active{
  color:var(--gold);
  border-bottom:2px solid var(--gold);
}
main{
  max-width:1480px;
  margin:auto;
  padding:3rem;
}
.news h1{
  margin:0 0 2rem;
  color:var(--gold);
  font-family:Georgia,'Times New Roman',serif;
  font-weight:400;
  font-size:clamp(3rem,5vw,5rem);
}
.release h2{
  margin:0;
  font-family:Georgia,'Times New Roman',serif;
  font-weight:400;
  font-size:clamp(2rem,3vw,3rem);
}
.subhead{
  margin:.85rem 0 2.5rem;
  color:var(--gold);
  font-size:1.1rem;
}
.cover-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.8rem;
}
.cover-grid figure{
  margin:0;
  text-align:center;
}
.art-frame{
  width:100%;
  aspect-ratio:349/400;
  border:2px solid var(--gold);
  background:#0a0a0a;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.art-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
figcaption{
  margin-top:1rem;
  font-family:Georgia,'Times New Roman',serif;
  font-size:1.3rem;
}
.copy{
  max-width:1200px;
  margin:3rem 0 2rem 3.5rem;
}
.copy p{
  font-size:1.1rem;
  line-height:1.7;
  margin:0 0 1rem;
}
.spotify{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:340px;
  min-height:3.3rem;
  border:2px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.04em;
  margin-left:3.5rem;
}
.spotify:hover{background:rgba(201,145,61,.08)}
footer{
  border-top:2px solid var(--gold);
  margin-top:4rem;
  padding:2.5rem 3rem 3rem;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:2rem;
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}
.footer-name{
  font-family:Georgia,'Times New Roman',serif;
  font-size:1.5rem;
}
.footer-role,.footer-publisher{
  color:var(--gold);
  margin-top:.5rem;
  font-size:.8rem;
  letter-spacing:.05em;
}
.footer-nav{
  color:var(--cream);
  font-size:.85rem;
  line-height:1.8;
}
@media (max-width:1000px){
  .hero-inner{flex-direction:column}
  .cover-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:700px){
  .hero{min-height:28rem}
  .hero-inner,main{padding:1.5rem}
  .nav{gap:1rem}
  .cover-grid{grid-template-columns:1fr}
  .copy{margin:2rem 0}
  .spotify{margin-left:0;min-width:100%}
  footer{grid-template-columns:1fr;padding:2rem 1.5rem}
}

.footer-nav a{color:inherit;text-decoration:none}.footer-nav a:hover{color:var(--gold)}


.site-master-header{
  background:#000;
  border-bottom:1px solid #a66b22;
}
.site-master-header-inner{
  position:relative;
  width:min(100%,1024px);
  margin:0 auto;
}
.site-master-header-inner>img{
  display:block;
  width:100%;
  height:auto;
}
.site-hotspot{
  position:absolute;
  top:20%;
  height:55%;
  z-index:5;
}
.site-hotspot.home{left:44.3%;width:6%}
.site-hotspot.music{left:50.5%;width:7%}
.site-hotspot.about{left:58.0%;width:7%}
.site-hotspot.news{left:65.3%;width:7%}
.site-hotspot.contact{left:72.7%;width:9%}
.site-hotspot:focus{
  outline:2px solid #c9913d;
  outline-offset:2px;
}
