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

Full-width content band (`.kwac-band`) with 96px vertical padding, centered
statement headline and optional copy. Every section of the listing below the
hero is one `Section`; alternate `alt` on and off so neighbouring bands are
distinguishable. Pass an `id` to make it an anchor target (the headline gets
`${id}-title` and the section is labelled by it).

## Props

```ts
interface SectionProps {
  /** Big centered statement headline (`.kwac-statement`), e.g. "1.800 kg. Zieht, was Sie vorhaben." Omit for image-only bands */
  statement?: React.ReactNode;
  /** One muted paragraph under the statement (`.kwac-band-copy`), max ~640px wide. */
  copy?: React.ReactNode;
  /** `alt` paints the light-gray band background (`.kwac-band-alt`). Alternate white and alt down the page. */
  alt?: boolean;
  /** `final` adds the extra vertical padding of the closing call-to-action band (`.kwac-final`). */
  final?: boolean;
  /** Content below the copy: grids, tables, cards, `CtaActions`. */
  children?: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}
```
