:root{
  --bg:#000;
  --fg:#fff;
  --muted:#8a8a8a;
  --line:#242424;
  --pad:clamp(22px,3.4vw,58px);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
button{font:inherit}
.site-header{
  position:fixed;
  z-index:50;
  top:0;left:0;right:0;
  height:86px;
  padding:0 var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.13);
  background:rgba(0,0,0,.76);
  backdrop-filter:blur(12px);
}
.home-page .site-header{
  background:linear-gradient(to bottom,rgba(0,0,0,.72),rgba(0,0,0,0));
  border-bottom:0;
  backdrop-filter:none;
}
.brand{display:flex;width:150px;text-decoration:none}
.brand img{display:block;width:100%;height:auto}
.main-nav{display:flex;align-items:center;gap:34px;height:100%}
.main-nav>a,.nav-group>a,.submenu a{
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
}
.nav-group{position:relative;height:100%;display:flex;align-items:center}
.submenu{
  position:absolute;
  top:66px;
  left:-18px;
  min-width:145px;
  display:flex;
  flex-direction:column;
  padding:11px 0;
  background:#000;
  border:1px solid #2b2b2b;
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:.2s ease;
}
.submenu a{padding:11px 18px}
.nav-group:hover .submenu,.nav-group:focus-within .submenu{
  opacity:1;pointer-events:auto;transform:none;
}
.menu-toggle{display:none;background:none;border:0;color:#fff;width:40px;height:40px;padding:9px}
.menu-toggle span{display:block;height:1px;background:#fff;margin:7px 0}

.hero-video{height:100svh;min-height:620px;position:relative;overflow:hidden;background:#000}
.hero-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center center;
}
.hero-shade{
  position:absolute;inset:0;
  background:rgba(0,0,0,.18);
}
.hero-logo{
  position:absolute;inset:0;
  display:grid;place-items:center;
  padding:110px var(--pad) 70px;
}
.hero-logo img{
  width:min(74vw,980px);
  max-height:44vh;
  object-fit:contain;
  filter:drop-shadow(0 2px 20px rgba(0,0,0,.35));
}
.scroll-mark{
  position:absolute;bottom:34px;right:var(--pad);
  display:flex;align-items:center;gap:12px;
  font-size:10px;font-weight:700;letter-spacing:.15em;
  text-decoration:none;
}
.scroll-mark .line{width:58px;height:1px;background:#fff}

.page{
  padding:150px var(--pad) 58px;
  min-height:100vh;
}
.page-head{
  display:grid;
  grid-template-columns:1fr 2.4fr;
  column-gap:40px;
  border-bottom:1px solid var(--line);
  padding-bottom:44px;
}
.page-head .eyebrow{
  padding-top:10px;
  font-size:10px;font-weight:700;letter-spacing:.16em;color:#a0a0a0;
}
.page-head h1{
  grid-column:2;
  margin:0;
  font-size:clamp(70px,13vw,190px);
  line-height:.78;
  letter-spacing:-.075em;
  font-weight:900;
}
.page-head p{
  grid-column:2;
  max-width:640px;
  margin:34px 0 0;
  font-size:14px;line-height:1.65;color:#aaa;
}
.release-list{margin-top:62px;border-top:1px solid var(--line)}
.release-header,.release-row{
  display:grid;
  grid-template-columns:110px 1.1fr 2fr 120px 25px;
  gap:26px;
  align-items:center;
}
.release-header{
  min-height:42px;
  color:#666;
  font-size:9px;font-weight:700;letter-spacing:.14em;
}
.release-row{
  min-height:94px;
  border-top:1px solid var(--line);
  text-decoration:none;
  transition:background .18s,color .18s;
}
.release-row:last-child{border-bottom:1px solid var(--line)}
.release-row:hover{background:#fff;color:#000}
.release-cat,.release-date{
  font-size:10px;font-weight:700;letter-spacing:.1em;
}
.release-artist{font-size:18px;font-weight:800;text-transform:uppercase}
.release-title{font-size:18px}
.release-arrow{font-size:18px;text-align:right}
.page-cta{display:flex;justify-content:flex-end;margin-top:35px}
.outline-button,.solid-button{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:0 20px;
  text-decoration:none;
  font-size:10px;font-weight:800;letter-spacing:.14em;
}
.outline-button{border:1px solid #555}
.solid-button{background:#fff;color:#000;border:1px solid #fff}

.empty-state{
  min-height:44vh;
  display:grid;place-items:center;
  border-bottom:1px solid var(--line);
  color:#555;
  font-size:11px;font-weight:700;letter-spacing:.18em;
}

.artist-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin-top:62px;
  background:var(--line);
  border:1px solid var(--line);
}
.artist-card{
  padding:0;border:0;background:#000;color:#fff;text-align:left;cursor:pointer;
}
.artist-photo-placeholder{
  aspect-ratio:4/5;
  display:grid;place-items:center;
  background:#080808;
  color:#444;
  font-size:10px;font-weight:800;letter-spacing:.16em;
  transition:.25s ease;
}
.artist-card:hover .artist-photo-placeholder{background:#111;color:#777}
.artist-card-bottom{
  min-height:82px;padding:0 22px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  border-top:1px solid var(--line);
}
.artist-card-bottom strong{
  font-size:28px;letter-spacing:-.04em;
}
.artist-card-bottom span{
  font-size:9px;font-weight:700;letter-spacing:.13em;color:#777;
}
.artist-modal{position:fixed;inset:0;z-index:100;display:none}
.artist-modal.open{display:block}
.modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.78)}
.modal-panel{
  position:absolute;right:0;top:0;height:100%;width:min(630px,92vw);
  padding:110px clamp(28px,5vw,70px) 50px;
  background:#fff;color:#000;
}
.modal-close{
  position:absolute;top:30px;right:30px;
  border:0;background:transparent;cursor:pointer;
  font-size:10px;font-weight:800;letter-spacing:.13em;
}
.modal-kicker{font-size:10px;font-weight:800;letter-spacing:.14em;color:#777}
.modal-panel h2{
  margin:28px 0 40px;
  font-size:clamp(66px,10vw,120px);
  line-height:.8;letter-spacing:-.075em;
}
.modal-panel p{
  max-width:470px;min-height:130px;
  margin:0 0 42px;
  font-size:15px;line-height:1.75;color:#444;
}
.modal-panel .solid-button{background:#000;color:#fff;border-color:#000}

.shop-feature{
  display:grid;grid-template-columns:1.1fr .9fr;
  margin-top:62px;border:1px solid var(--line);
}
.shop-object{
  aspect-ratio:1.1/1;
  background:#080808;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:8vw;
  border-right:1px solid var(--line);
}
.shop-object img{width:82%;height:auto}
.shop-object span{
  margin-top:35px;color:#555;font-size:9px;font-weight:800;letter-spacing:.14em;
}
.shop-copy{
  padding:clamp(38px,6vw,95px);
  display:flex;flex-direction:column;align-items:flex-start;justify-content:center;
}
.shop-label{font-size:10px;font-weight:800;letter-spacing:.14em;color:#777}
.shop-copy h2{
  margin:28px 0 26px;
  font-size:clamp(42px,5vw,80px);line-height:.88;letter-spacing:-.06em;
}
.shop-copy p{
  max-width:430px;color:#999;font-size:14px;line-height:1.7;margin:0 0 30px;
}

.site-footer{
  min-height:96px;
  padding:0 var(--pad);
  border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  font-size:9px;font-weight:700;letter-spacing:.14em;color:#747474;
}
.footer-links{display:flex;gap:25px;flex-wrap:wrap}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:#fff}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
}
@media (max-width:820px){
  .site-header{height:72px}
  .brand{width:124px}
  .menu-toggle{display:block;z-index:2}
  .main-nav{
    position:fixed;inset:0;
    padding:115px 28px 40px;
    flex-direction:column;align-items:flex-start;gap:26px;
    background:#000;
    opacity:0;pointer-events:none;
    transform:translateY(-10px);
    transition:.2s ease;
  }
  body.menu-open .main-nav{opacity:1;pointer-events:auto;transform:none}
  body.menu-open{overflow:hidden}
  .main-nav>a,.nav-group>a{font-size:32px;letter-spacing:-.03em;font-weight:900}
  .nav-group{height:auto;display:block}
  .submenu{
    position:static;opacity:1;pointer-events:auto;transform:none;
    border:0;padding:13px 0 0;background:transparent;
  }
  .submenu a{padding:8px 0;font-size:12px;color:#777;display:block}
  .hero-logo img{width:86vw}
  .page{padding-top:120px}
  .page-head{display:block}
  .page-head h1{font-size:clamp(70px,20vw,125px);margin-top:28px}
  .page-head p{margin-top:28px}
  .release-header{display:none}
  .release-row{
    grid-template-columns:74px 1fr 28px;
    gap:15px;
    padding:22px 0;
    min-height:0;
  }
  .release-cat{grid-column:1;grid-row:1/3;align-self:start;padding-top:4px}
  .release-artist{grid-column:2;font-size:17px}
  .release-title{grid-column:2;font-size:13px;color:#888}
  .release-date{display:none}
  .release-arrow{grid-column:3;grid-row:1/3;align-self:center}
  .release-row:hover .release-title{color:#222}
  .artist-grid{grid-template-columns:1fr}
  .shop-feature{grid-template-columns:1fr}
  .shop-object{border-right:0;border-bottom:1px solid var(--line);aspect-ratio:1/1}
  .site-footer{padding-top:25px;padding-bottom:25px;align-items:flex-start;flex-direction:column}
}
