You're right, there isn't a good one-size-fits-all "under-the-covers" look at how WebDriver implements the various parts of its API, largely because the actual implementation can be very different depending on the browser and the operating system. The closest you'll come is the various pages on the project wiki.
To answer your specific question, the remote server creates a local instance of the client-side driver, and uses it to locate and click on the element. The driver (InternetExplorerDriver, FirefoxDriver, ChromeDriver, etc.) commonly uses JavaScript to find the element and get its dimensions and location on the page. The element is scrolled into view, if needed, and an OS-level mouse event is sent to the browser window to simulate the click.
However, this is just the common case, and there are exceptions For instance, some browsers may find the element using means other than the JavaScript automation atoms. Likewise, some drivers on some operating systems rely on synthetic events rather than OS-level, or so-called "native", events. The important thing to remember is that the remote server instantiates the same object you would if you invoked the driver locally, without using the Selenium remote server.