---

URL of the reference screenshot: https://www.designprompting.com/themes/justicia-clara/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/justicia-clara/theme.jpg&quot;

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

---

## Phase 0 — Screenshot Spec (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 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.

---
Create a complete website for the fictional brand &quot;Justicia Clara&quot; (law firm) using only HTML, Tailwind CSS via CDN, and vanilla JavaScript in a single file. Recreate the structure and styles of the analyzed site without copying any original text or images. Use the following color palette: #0F172A (deep navy blue), #1E293B (blue-gray), #F1F5F9 (very light gray), #C66B4A (burnt ochre), and #FFFFFF (white). Typography: Inter in weights 400 and 600 for headings, and Source Serif Pro for body text. 

**Header** (sticky, z-10, bg-white shadow): logo on the left, horizontal menu with links to &quot;About Us,&quot; &quot;Services,&quot; &quot;Pricing,&quot; &quot;Blog,&quot; &quot;Contact&quot;; utility link with a dropdown menu showing “Style Guide,” “Licenses,” “Changes,” “Legal,” “404”; prominent “Get started” button with a #C66B4A background and white text. 

**Hero** (full-width, min-h-screen, bg‑#0F172A, flex, items‑center, justify‑center, text‑center, padding‑x‑4): h1 heading in Inter‑600, text‑white, size 4xl md:5xl: &quot;Clear Justice. Guaranteed results.&quot;; p subtitle in Inter-400, text-gray-200: short description; main &quot;Book a Consultation&quot; button with bg-#C66B4A, hover:bg‑#B55A42, rounded‑md, px‑6, py‑3; decorative element on the right with an image of an advisor (placeholder) and a call-to-action circle with the text &quot;Book an advisory call&quot;. 

**Client Logos** (section with centered container, grid 2-col md:6-col, gap-6, text gray-700): small SVG placeholder images and a small label below (e.g., &quot;Global Agency&quot;). 

**Why Us** (grid 2-col lg:2-col, bg-#1E293B, text-white, padding-y-12): image on the left (placeholder), on the right an h2 heading &quot;Inter-600: Representation and True Advocacy,&quot; a paragraph describing a human-centered approach, and an &quot;Explore More&quot; button with a white outline and an SVG arrow. 

**Expertise** (white section, padding‑y‑12): centered h2 heading &quot;Specialized expertise for every legal challenge&quot;; responsive 3‑col md:2‑col grid; each card includes a placeholder image, an area title (e.g., “Family and Personal”) in h5, a list of services with a checkmark icon (SVG) and gray-800 text, and an optional internal button. 

**Footer** (bg‑#0F172A, text‑gray‑200, padding‑y‑8): logo column + brief description; quick-link columns (About, Services, Blog, Contact); contact column (email, phone); bottom row with copyright and links to privacy policy and terms of service. 

**Interactivity**: collapsible mobile menu (hamburger) that displays an overlay with links; fade-in animations when scrolling (using IntersectionObserver); fixed &quot;scroll-to-top&quot; button positioned at bottom-4, right-4 with an up icon. 

**Technical Requirements**: includes `<script src="https://cdn.tailwindcss.com"></script>` and set `tailwind.config = { theme: { extend: { colors: { primary: &#x27;#C66B4A&#x27;, dark: &#x27;#0F172A&#x27;, grayDark: &#x27;#1E293B&#x27; } } } }`; load Google fonts (`<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Source+Serif+Pro:wght@400&display=swap" rel="stylesheet">`). All HTML must be properly indented, use Tailwind utility classes, and avoid external custom classes.

---

## 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, use 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 spec
- 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>
```