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

Dark full-bleed opening hero (`.kwac-hero.kwac-hero-dark`): near-black band
with centered eyebrow, oversized white headline, muted lead and light-blue
links, followed by light-gray product tiles and the "Passend für" vehicle row.
Replaces `Hero` at the top of the long product page; follows `VehicleBar`,
precedes `StatsRow`.

## Props

```ts
interface DarkHeroProps {
  /** Gray eyebrow above the headline. */
  eyebrow?: string;
  /** Oversized white headline (up to 84px). Use `<br />` for the line break between the two sentences. */
  title: React.ReactNode;
  /** Muted lead paragraph. */
  lead?: React.ReactNode;
  /** Light-blue standalone links under the lead. */
  links?: DarkHeroLink[];
  /** Product tiles on light gray below the copy (two in the template). */
  tiles?: DarkHeroTile[];
  /** "Passend für" row with the vehicle image, separated by a dark hairline. */
  fit?: DarkHeroFit;
}
```
