Post-Archive like a page in a specific subdirectory

You can register a custom post type with a custom slug permalink structure.

$args = array(
   'rewrite' => array( 'slug' => 'our-work/book' ),
);
register_post_type( 'projects', $args );