Hero from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.Hero` (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).

Opening hero (`.kwac-hero`): centered eyebrow, oversized bold headline
(`.kwac-h1`, up to 72px, tight tracking), muted lead, a row of `TextLink`s and
the hero product image with an uppercase caption. Place directly after `VehicleBar`.

## Props

```ts
interface HeroProps {
  /** Small muted line above the headline, e.g. "Komplettset für den VW Touran 5T1". */
  eyebrow?: string;
  /** The product headline: two short sentences, product first, benefit second. */
  title: React.ReactNode;
  /** Muted lead paragraph (18-23px). */
  lead?: React.ReactNode;
  /** Blue standalone links under the lead; each gets a trailing chevron. */
  links?: HeroLink[];
  /** Product photo on white with optional caption, max 860px wide. */
  image?: HeroImage;
}
```
