Preview the prompt +
# Build brief — an original marketing website in the taste of Cabi
> Reference: https://cabifoods.com · UIDiscovery: https://uidiscovery.com/sites/cabi · captured 2026-09-23 at a 1440px desktop viewport (+ 390px iPhone shots) · [full page](https://uidiscovery.com/media/captures/cabi/full.webp) · [scroll video](https://uidiscovery.com/media/captures/cabi/preview.mp4)
## 1. Goal
Build an original marketing website for **[the user's brand]** that feels as considered as Cabi — same structure, rhythm and polish, entirely new identity and content.
## 2. Originality rules
- Build an ORIGINAL design for the user's own brand in the same *taste* as Cabi: structure, rhythm, hierarchy, palette mood and type pairing.
- Never reuse Cabi's logo, name, product imagery, illustrations, icons, screenshots or copy. Write new copy for the user's product.
- If the user hasn't said what their product is, ask first (or use clearly marked placeholders like [Brand], [Product], [Audience]).
- Reference screenshots are for looking at, not for embedding or tracing.
## 3. The taste, in short
- Cabi (cabifoods.com): Food & Drink marketing website, dark.
- 6 sections: Hero → Features → Statement → Features → Footer.
- Spacing: about a screen per idea (median section ≈806px).
- Hero headline: 6 words — short and punchy; keep yours under ~9.
- Type: one family (Cagliostro). Imagery: mostly photography, some abstract 3D / gradient art.
## 4. Page structure (top to bottom)
### 1. Hero — state what the product is and for whom in one glance, and offer the primary action.
- Layout: headline-led stack: eyebrow → H1 → supporting line → actions, with a visual beside or below. About one full screen (806px at 1440), own light band #ffffff; 2 image/graphics; one primary button.
- Slots: Eyebrow / announcement pill (optional); H1 (~6 words, like the reference); Supporting line, 1–2 sentences; One primary action; Hero visual (see image plan).
- Topic (tone/length only — never reuse): “GOOD EGGS MAKE THE BEST MAYO”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-01.webp) · imagery: slot 1
### 2. Features — explain the key benefits, grouped so each can be scanned in seconds.
- Layout: section title over a grid or alternating rows of benefit items. Half to one screen (682px at 1440), own light band #ffffff; 22 image elements (photo collage/gallery + small graphics); primary + secondary button; 6 headings → ~5 items under a title.
- Slots: Section title (~3 words, like the reference); 5 items: icon or visual + short title + 1–2 line description; Primary + secondary action.
- Topic (tone/length only — never reuse): “Cabi Pantry”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-02.webp) · imagery: slot 2
### 3. Features — explain the key benefits, grouped so each can be scanned in seconds.
- Layout: section title over a grid or alternating rows of benefit items. About one full screen (1048px at 1440), own light band #ffffff; 2 image/graphics; 2 text links instead of buttons.
- Slots: Section title (~4 words, like the reference); 2 items: icon or visual + short title + 1–2 line description; Text link action.
- Topic (tone/length only — never reuse): “The Japanese Mayo Trio”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-03.webp) · imagery: slot 3
### 4. Statement — a large-type moment that sets tone and pace.
- Layout: oversized typography with lots of space. Half to one screen (583px at 1440), own light band #ffffff; 2 image/graphics; one primary button.
- Slots: Heading (~7 words, like the reference); Body copy; Supporting visual (see image plan); One primary action.
- Topic (tone/length only — never reuse): “Japanese Condiments that don’t just sit there”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-04.webp)
### 5. Features — explain the key benefits, grouped so each can be scanned in seconds.
- Layout: section title over a grid or alternating rows of benefit items. About one full screen (1009px at 1440), own light band #ffffff; 124 image elements (photo collage/gallery + small graphics); 44 buttons (tabs, toggles or per-card actions), 22 links (link lists / navigation); 6 headings → ~5 items under a title.
- Slots: Section title (~4 words, like the reference); 5 items: icon or visual + short title + 1–2 line description; Primary + secondary action.
- Topic (tone/length only — never reuse): “Wasabi Mayo Steak Sando”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-05.webp) · imagery: slot 4
### 6. Footer — navigation, legal and contact — the page's index.
- Layout: multi-column link groups, brand line, legal row. Half to one screen (519px at 1440), own light band #ffffff; 4 images/icons (a set of cards or a small gallery); one primary button, 17 links (link lists / navigation).
- Slots: Brand mark + one-line description; 3–5 link columns; Newsletter or contact (optional); Legal row + social icons.
- Topic (tone/length only — never reuse): “Feed your inbox and belly with mouthwatering recipes and cooking tips.”
- [Screenshot](https://uidiscovery.com/media/captures/cabi/s-07.webp)
Inner pages also captured (Product, About, Blog, Contact, Shop, Security): https://uidiscovery.com/sites/cabi?view=pages
## 5. Design system
### Colour
| Role | Hex | Use | Contrast on background |
|---|---|---|---|
| background | `#432f29` | page background | — |
| foreground | `#ffffff` | body text, headings | 12.5:1 |
| accent | `#d02a00` | primary buttons, links, highlights — sparingly | 2.4:1 ⚠ not for text; use as a fill with #ffffff text (5.2:1) |
| surface | `#000000` | cards, inputs, alternate bands | text on it 21.0:1 |
| muted | `#f8f6f0` | secondary text, borders | 11.6:1 |
Captured palette: `#432f29` `#f8f6f0` `#ffffff` `#d02a00` `#000000`. Roles are assigned automatically — sanity-check them against the screenshot. Keep the palette's *mood* (dark, warm) and proportions; swap the accent for the user's brand colour.
### Tokens
```css
:root {
--background: #432f29;
--foreground: #ffffff;
--accent: #d02a00;
--surface: #000000;
--muted: #f8f6f0;
--font-heading: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
--radius: 12px; /* calibrate from the screenshot */
}
/* Tailwind v4 — in globals.css after @import "tailwindcss"; */
@theme {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-accent: var(--accent);
--color-surface: var(--surface);
--color-muted: var(--muted);
--font-heading: var(--font-heading);
--font-sans: var(--font-body);
}
```
### Typography
- Headings: **Inter** (Google Fonts) — reference uses Cagliostro. “Cagliostro” is likely a custom or licensed face. Inter is a neutral stand-in — pick a closer free match by eye from the screenshot.
- Body: same family — a single-family system; create contrast with size and weight, not a second face.
- Scale (starting point, sizes weren't measured — calibrate against the 1440px screenshot): display clamp(2.75rem, 6vw, 5rem), h2 clamp(1.75rem, 3vw, 2.5rem), h3 1.25rem, body 1rem–1.125rem / 1.6, small 0.875rem. Headings: tight tracking (-0.02em), line-height 1.05–1.15.
### Spacing & rhythm
Sections run ≈806px tall at 1440 (median; range 519–1048px, captures cap at 1700px) — roughly a screen per idea. Start with 96–120px vertical padding per section on desktop and about two-thirds of that on mobile. One continuous background — separate sections with space and type, not colour bands. 8px spacing grid, 1200–1280px max content width, 24px (mobile) / 32–48px (desktop) gutters.
### Shape, depth & theme
Radii and shadows weren't measured. Read exact corner radius, border and shadow treatment from the screenshots. Dark-first; for a light mode swap background ↔ foreground, lighten the surface, keep the accent and re-check contrast.
## 6. Imagery plan
Measured from 3 section screenshots: mostly **photography**, some abstract 3D / gradient art (dark, warm, Food & Drink). Still glance at the linked screenshots to match the exact mood.
### Slot 1 · 1. Hero → photography
- Photography, seen in the capture (food, vegetable, pepper veggie). (measured from the screenshot) Count: a set of ~2 in one consistent style. Aspect: 16:9 full-bleed (or 21:9). Look first: [ref 1](https://uidiscovery.com/media/captures/cabi/s-01.webp)
- **Stock** — “plated dish overhead natural light dark”: [Unsplash](https://unsplash.com/s/photos/plated-dish-overhead-natural-light-dark?orientation=landscape) · [Pexels](https://www.pexels.com/search/plated%20dish%20overhead%20natural%20light%20dark/?orientation=landscape) · [Pixabay](https://pixabay.com/images/search/plated%20dish%20overhead%20natural%20light%20dark/?orientation=horizontal)
- **Generate** — `Photograph: plated dish overhead natural light. Composition: wide shot, subject off-centre to one side, generous clean negative space for the headline. Lighting: low-key, moody directional light with deep shadows. Warm colour grade that sits on #ffffff, #d02a00, #000000. Photorealistic, natural textures, shallow depth of field, 35mm lens. Aspect ratio 16:9. No text, no letters, no logos, no watermarks, no brand marks or trademarked products, no recognisable real people.`
### Slot 2 · 2. Features → photography
- Food & Drink references lean on photography. Count: a collage of several photos with one consistent colour grade. Aspect: 4:3. Look first: [ref 1](https://uidiscovery.com/media/captures/cabi/s-02.webp)
- **Stock** — “restaurant interior warm evening dark”: [Unsplash](https://unsplash.com/s/photos/restaurant-interior-warm-evening-dark?orientation=landscape) · [Pexels](https://www.pexels.com/search/restaurant%20interior%20warm%20evening%20dark/?orientation=landscape) · [Pixabay](https://pixabay.com/images/search/restaurant%20interior%20warm%20evening%20dark/?orientation=horizontal)
- **Generate** — `Photograph: restaurant interior warm evening. Composition: tight crop, identical framing and background across the whole set. Lighting: low-key, moody directional light with deep shadows. Warm colour grade that sits on #ffffff, #d02a00, #000000. Photorealistic, natural textures, shallow depth of field, 35mm lens. Aspect ratio 4:3. No text, no letters, no logos, no watermarks, no brand marks or trademarked products, no recognisable real people.`
### Slot 3 · 3. Features → abstract 3D / gradient
- Abstract art — gradient, 3D or atmospheric graphics, seen in the capture. (measured from the screenshot) Count: a set of ~2 in one consistent style. Aspect: 4:3. Look first: [ref 1](https://uidiscovery.com/media/captures/cabi/s-03.webp)
- **Stock** — “abstract dark gradient 3d”: [Unsplash](https://unsplash.com/s/photos/abstract-dark-gradient-3d?orientation=landscape) · [Pexels](https://www.pexels.com/search/abstract%20dark%20gradient%203d/?orientation=landscape) · [Pixabay](https://pixabay.com/images/search/abstract%20dark%20gradient%203d/?orientation=horizontal)
- **Generate** — `Abstract 3D render: soft, glossy glass-like shapes and a smooth gradient in #d02a00 and #f8f6f0 on a #432f29 background. Lighting: low-key, moody directional light with deep shadows; warm tone. Minimal and calm, generous negative space on one side for text. Aspect ratio 4:3. No text, no letters, no logos, no watermarks, no brand marks or trademarked products, no recognisable real people.`
### Slot 4 · 5. Features → photography (uncertain)
- Food & Drink references lean on photography; 124 elements suggests icons/thumbnails mixed in. Count: a collage of several photos with one consistent colour grade. Aspect: 4:3. Look first: [ref 1](https://uidiscovery.com/media/captures/cabi/s-05.webp)
- **Stock** — “restaurant interior warm evening close up dark”: [Unsplash](https://unsplash.com/s/photos/restaurant-interior-warm-evening-close-up-dark?orientation=landscape) · [Pexels](https://www.pexels.com/search/restaurant%20interior%20warm%20evening%20close%20up%20dark/?orientation=landscape) · [Pixabay](https://pixabay.com/images/search/restaurant%20interior%20warm%20evening%20close%20up%20dark/?orientation=horizontal)
- **Generate** — `Photograph: restaurant interior warm evening close up. Composition: tight crop, identical framing and background across the whole set. Lighting: low-key, moody directional light with deep shadows. Warm colour grade that sits on #ffffff, #d02a00, #000000. Photorealistic, natural textures, shallow depth of field, 35mm lens. Aspect ratio 4:3. No text, no letters, no logos, no watermarks, no brand marks or trademarked products, no recognisable real people.`
- **No imagery (type-led)** — 4. Statement: No imagery needed — type, spacing and colour do the work. If the screenshot shows a background graphic, rebuild it in CSS (gradient, grid, noise) or a short muted video, not a stock photo.
- **Icons** — 6. Footer: Use one open-source icon set at one stroke weight — Lucide, Phosphor or Heroicons (MIT) — tinted with the text or accent token. Social icons: Simple Icons.
### If the screenshots show a different style
Open the refs first and name what you actually see (photo / product UI / illustration / abstract gradient or 3D / type only). If it differs from the guess, switch routes — UI is built in code, type-only needs no image, otherwise:
- **illustration** — generate `Flat vector illustration: plated dish overhead, friendly simplified shapes, limited palette of #ffffff, #d02a00, #000000 plus one soft neutral, plenty of empty background, consistent line weight, warm mood. Aspect ratio 16:9. No text, no letters, no logos, no watermarks, no brand marks or trademarked products, no recognisable real people.` · stock: [“food flat illustration” on Unsplash](https://unsplash.com/s/photos/food-flat-illustration?orientation=landscape) (same query works on Pexels/Pixabay)
- **Licences:** Unsplash and Pexels images are free for commercial use under their own licences; Pixabay under the Pixabay Content License. Check each image's page before use, credit the photographer when asked (good practice anyway), and skip images showing logos, trademarks, branded products or identifiable people without a release.
- **AI generation:** the prompts work with any image model (GPT Image, Imagen, Flux, Midjourney, Firefly, SDXL…) — check its commercial-use terms. Never put the reference brand's name or “in the style of <brand>” in a prompt.
- **Never** download, trace or re-host the reference's own images, illustrations, product shots or logos.
## 7. Build steps
1. Confirm brand, product, audience and the primary action with the user.
2. Set up the tokens (CSS variables / Tailwind @theme) and load the fonts.
3. Build the sections in order, mobile-first, with each reference screenshot open.
4. Write original copy for every slot — match length and tone, never the words.
5. Source every image via the imagery plan (stock or generated); compress it and record credits.
6. Run the checklist at 390 / 768 / 1440px and fix what fails.
## 8. Acceptance checklist
- [ ] Responsive at 390px, 768px and 1440px — no horizontal scroll, tap targets ≥ 44px on mobile.
- [ ] Colour contrast WCAG AA: 4.5:1 body text, 3:1 large text and UI; visible focus states; full keyboard navigation.
- [ ] Semantic HTML: one <h1>, ordered headings, landmarks (header/nav/main/footer), labelled form fields, alt text on meaningful images.
- [ ] Performance: modern image formats with width/height set, lazy-load below the fold, ≤ 2 font families with font-display: swap, LCP < 2.5s.
- [ ] prefers-reduced-motion respected; animations under ~300ms and never blocking content.
- [ ] Originality: no copied logos, images, illustrations or copy from the reference; every image licensed or generated; credits recorded.
## 9. If you use Next.js + Tailwind
Paste the @theme block into globals.css, load fonts with next/font/google, make each section a server component in components/sections/, use next/image with explicit sizes, and keep client components for interactive bits only (menus, toggles, accordions).
---
More: tokens https://uidiscovery.com/api/v1/sites/cabi/tokens · kit https://uidiscovery.com/api/v1/sites/cabi/kit · MCP `get_design_brief({ slug: "cabi" })`, `get_image_plan({ slug: "cabi" })`. Cite the reference as https://uidiscovery.com/sites/cabi.