---

URL of the reference screenshot: https://www.designprompting.com/themes/lino-brio/theme.jpg

IMPORTANT — Pre-check (do this BEFORE anything else):
Check to see if you have the reference image ATTACHED as a file (not as a URL in the text).

- If there is NO image attached and you only see the URL → STOP. Don&#x27;t generate anything.
  Just reply:
  &quot;⚠️ I only have the URL, not the screenshot. Download it from here and attach it to the chat
  so I can replicate the design accurately:
  https://www.designprompting.com/themes/lino-brio/theme.jpg&quot;

- If the image IS attached → continue with the instructions below.

---

## Phase 0 — Screenshot Specification (REQUIRED before coding)
Before writing a single line of code, analyze the attached screenshot and write a spec that includes:
- An ordered list of sections exactly as they appear from top to bottom. Do not add sections that are not in the screenshot (if the navigation header or footer is not visible, do not make them up).
- Per section: approximate height (px relative to a width of 1440), number of columns, spacing, background color (hex), dominant border-radius, image aspect ratio, and % of overlay, if any.
- Typography: approximate sizes for H1/H2/body in px and weights.
This spec governs the entire development process: the code is written based on it.

---

## Visual Reference
Faithfully replicate the design shown in the attached screenshot (layout, color palette, typography).
If you need the image as an actual resource on the website, it is available at the URL provided above.

---
You are Claude Design. Create a complete single-file web template for the fictional fashion brand **Lino &amp; Brío** (linoybrio.com). The project must be built using only **HTML**, **Tailwind CSS CDN**, and **vanilla JavaScript** (no external JavaScript frameworks). Replicate the visual style of the analyzed site:

- **Color Palette**: primary #1a1a1a (deep charcoal), accent #e63946 (vibrant red), secondary #f1f1f1 (light gray), highlight #ffb400 (warm amber).
- **Typography**: Heading font &quot;Playfair Display&quot; (serif, bold) and body font &quot;Inter&quot; (sans-serif, regular). Load both from Google Fonts.
- **Header**: Sticky top bar, left-aligned logo text &quot;LINO &amp; BRÍO&quot; in uppercase, navigation links (Home, About, Shop, Blog) with an underline hover animation, right-aligned cart button displaying an item count badge.
- **Cart**: Right-side slide-out panel, list of items with thumbnail, name, price, quantity input, remove link, subtotal, and checkout button. Use localStorage to simulate cart data.
- **Hero Section**: Full-width background image (placeholder) with a dark overlay, centered H1 &quot;Inspiring Style&quot; and subtitle paragraph, &quot;Discover the Collection&quot; call-to-action button.
- **Collections Grid**: A 3-column responsive grid, with each card featuring an image and a category title overlay, and a hover zoom effect.
- **Featured Slider**: Horizontal carousel of product cards (image, name, price, “Add” button). Implement simple scrolling with left/right arrow buttons using JavaScript.
- **Newsletter**: Centered form with email input field and submit button, minimal validation, success toast.
- **Footer**: Dark background, four columns: About, Customer Service, Follow Us (icons), Contact. Include social icons (SVG) for Instagram, Facebook, and TikTok.
- **Responsive**: Mobile menu icon (hamburger) that toggles a vertical overlay navigation.
- **Accessibility**: All interactive elements must be keyboard-focusable; include `aria-labels` for navigation, the cart, and forms.
- **Performance**: Use `loading=&quot;lazy&quot;` on images, minimize inline CSS, and keep JavaScript under 30 KB.

Structure the HTML using semantic tags (`<header>`, `<nav>`, `<main>`, `<section>`, `<footer>`). Provide clear class names following Tailwind conventions (e.g., `bg-primary`, `text-accent`, `grid-cols-3`). Include comments indicating each block number that corresponds to the &quot;sections&quot; list.</footer></section></main></nav></header>

The output must be a single HTML file ready to be saved as `index.html` and opened in a browser.

---

## Block-by-Block Construction Protocol
Build the HTML section by section, in the exact order shown in the screenshot. After each block, compare it to its corresponding area in the image (structure, columns, spacing, radii, colors) and correct it before moving on to the next one. Do not proceed with a block that does not match.

## No-Invention Rule
If the screenshot and this prompt contradict each other on any visual detail, go with the screenshot. If a visual detail isn’t specified, infer it from the screenshot; never make it up. Nonsensical text in the screenshot (AI typos) should NOT be copied: write coherent text in Spanish while maintaining equivalent length and visual hierarchy. The only exception: the mandatory Design Prompting footer at the end of this prompt must always be included.

## Fidelity Checklist (Before Submission)
- Order and number of sections = screenshot
- Color palette and contrast = screenshot
- Columns, gaps, and border-radius = Phase 0 specs
- Image ratios and section heights ≈ screenshot
- Text density similar to the screenshot (no bloated paragraphs)

## Iteration Protocol
If the user identifies differences after the first generation, correct only the specified changes without regenerating the sections that have already been validated.

---

## Mandatory Instruction — Footer

Add this footer to all pages created with this prompt, including the link to Design Prompting:

html
<footer>
  <p>
  
    Designed with the help of 
    <a href="https://www.designprompting.com/" target="_blank" rel="noopener noreferrer">
      Design Prompting
    </a>
  </p>
</footer>
```