---

URL of the reference screenshot: https://www.designprompting.com/themes/linea-sombra/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/linea-sombra/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 overlay percentage, if applicable.
- 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.

---
Create a website for the fictional brand &quot;Línea Sombra&quot; (tattoo studio) using a single HTML file that includes Tailwind CSS via CDN and vanilla JavaScript. Faithfully reproduce the structure and style of the original design without copying any text or images verbatim.:
- Color palette: background #FFFFFF, text #111111, accent #D33A2C, soft gray #F5F5F5.
- Typography: headings “Montserrat” (Google Fonts), body “Inter” (Google Fonts).
- Header: sticky bar, logo placeholder (SVG), collapsible hamburger menu for mobile, links to Home, About, Gallery, Artists, Awards, Pricing, Locations, and a prominent “Book a visit” button with an arrow icon.
- Hero: full-width section, title split into three lines (“Where Ink,” “Becomes,” “Art”), descriptive text, primary “View Pricing” button, and secondary “Book a visit” button with an arrow.
- Pricing section: cards with three plans, title, sample price, list of features, and a “Book” button.
- Gallery: responsive grid—3-column on desktop, 2-column on tablet, 1-column on mobile—with sample images (Unsplash placeholders) featuring a hover zoom effect.
- Artists: Cards with a placeholder photo, name, and specialty; below, an accordion with open positions (Junior Tattoo Artist, Tattoo Apprentice, Specialized Artist) displaying a description and an “Apply Now” button.
- Awards: Horizontal bar with award logos (placeholder SVGs).
- Booking modal: appears when clicking any “Book a Visit” or “Reserve” button; semi-transparent background, forms for name, age, phone number, location selector, email, text area for tattoo idea, consent checkbox, and “Book Now” button. The left side of the modal displays an illustrative image.
- Footer: #111111 background, white text, navigation links, social media icons (placeholders), address, and email.
- Interactivity: hamburger menu opens/closes navigation; accordion shows/hides content; buttons with border animation similar to the original; modal opens/closes with a fade effect.
- Accessibility: ARIA attributes, visible focus, adequate contrast.
- Do not include real images or copied text; use Lorem ipsum or generic descriptions.
- The file must be self-contained, with no external dependencies except for the Tailwind CDN and Google Fonts.
- Include a comment at the beginning of the file stating &quot;Generated for Línea Sombra - Creative agency template.&quot;

---

## 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>
```