VehicleBar from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.VehicleBar` (bundle loaded from the root `_ds_bundle.js`). Wrap the tree in `<Page>` (full provider chain in README.md — components read theme/i18n from that context).

Sticky, translucent vehicle strip (`.kwac-vbar`) directly under the header:
hairlines top and bottom, blurred backdrop, model name on the left, muted
facts in the middle and a compact `Button` on the right. Stays pinned to the
top while the listing scrolls.

## Props

```ts
interface VehicleBarProps {
  /** Bold vehicle designation, e.g. "VW Touran Typ: 5T1". */
  model: string;
  /** Anchor the model links to, usually the vehicle table section, e.g. "#kwac-fahrzeuge". */
  modelHref?: string;
  /** Muted one-line facts, separated by " · " ; hidden below 740px. */
  facts?: string;
  /** Label of the compact blue pill on the right. */
  ctaLabel?: string;
  /** Target of the compact pill. */
  ctaHref?: string;
}
```
