Liquid Glass materials and adaptive themes
The menu, buttons, photo captions and form sheets are translucent panes in the manner of Apple’s Liquid Glass (a web approximation: Apple publishes no CSS for it). backdrop-filter: blur() saturate() frosts what lies behind each pane and inset box-shadow layers draw its bright rim; large sheets sit on pre-blurred photographs so they look frosted without costly live blur. The home page title is filled with a frosted copy of the photograph using background-clip: text. Custom properties hold every colour, and prefers-color-scheme, prefers-reduced-transparency, prefers-contrast and prefers-reduced-motion redefine them.
.header-bar::before {
background-color: var(--glass);
box-shadow: var(--glass-rim), var(--glass-lift);
backdrop-filter: var(--glass-blur);
}
Technique reference: MDN Web Docs.
See the glass menu and title