Card — content container for catalogue items, articles and feature tiles.

```jsx
import { Card } from "./Card.jsx";
import { Button } from "../buttons/Button.jsx";

<Card
  interactive
  media={<img src="bench.jpg" alt="" />}
  eyebrow="Seating"
  title="The Ajao Bench"
  text="Hand-jointed iroko, finished in raw linseed."
  footer={<Button size="sm">View piece</Button>}
/>
```

`elevation`: `flat` | `raised`. `interactive` adds hover-lift. Use composed props (`media`/`eyebrow`/`title`/`text`/`footer`) for catalogue cards, or pass free children for custom layouts. Titles render in Montaga.
