# Design Language for martialaw.quest

## Aesthetics and Tone

Pop-art meets legal scholarship: a site where bold Lichtenstein-style halftone dots and flat-color comic panels collide with the gravitas of burgundy-inked law texts. The mood is deliberately playful yet knowledgeable — a martial arts law practice that refuses to take itself too seriously. Think Roy Lichtenstein's panels repurposed for a law firm that defends fighters, coaches, and dojo owners. Ben-Day dot textures bleed through behind serious typeface headings. Bright red speech bubbles float next to dense serif paragraphs. The overall sensation: walking into a boxing gym decorated with vintage legal tomes — comic energy wrapped in scholarly leather.

The tone is approachable-casual: law explained without pretense, martial arts without machismo. The site should feel like a friend who happens to be both a black belt and a bar-exam passer is talking directly to you over coffee. No intimidating marble columns, no power-suit imagery. Instead: bold flat shapes, hand-lettered annotations, and the quiet confidence of someone who knows exactly what they are talking about.

Inspiration draws from: Silver Age comics coloring, mid-century legal textbook illustration, Japanese manga panel composition, and the warmth of a well-worn dojo bulletin board.

## Layout Motifs and Structure

Hero-dominant opening: a full-viewport splash built from a fractured comic-panel grid — three overlapping rectangles at dramatic angles, each containing a different texture layer (halftone dots, flat burgundy fill, off-white cream). The domain name "martialaw.quest" is set in enormous display type that punches across panel borders.

Below the hero, content is organized as a series of "case panels" — asymmetric two-column spreads where one column holds a bold typographic pull-quote and the opposing column carries body text annotated with small marginalia notes (as if a lawyer has scribbled in the margins). Panel borders are thick (3–4px) black rules, echoing comic page anatomy.

A vertical spine running left-side acts as a chapter-progress indicator — like a spine bookmark on a casebook. As users scroll, the spine fills with deep burgundy ink.

Section breaks use full-bleed "splash page" moments: single bold statement in the largest type available, backed by a wash of Ben-Day dots in cream and burgundy.

Navigation is a narrow top bar with a bookmarked-tab aesthetic: each nav item looks like a tabbed divider in a legal binder — white with a burgundy tab projection at the top.

Footer treated as the back-matter of a textbook: colophon-style credits, small running footer lines, and a simple one-panel comic gag in the bottom right corner.

## Typography and Palette

**Primary Typeface — Display:** EB Garamond (Google Fonts) — used at extreme sizes (120px–200px) for hero display text. Letter-spacing tightened to -0.03em. Color: #3D0A1A (near-black burgundy) or full white #FAF6F0 on dark panels.

**Secondary Typeface — Body & UI:** Libre Baskerville (Google Fonts) — for body paragraphs, set at 17px/1.75 line-height. This reinforces the scholarly-legal register without being stuffy.

**Accent Typeface — Speech Bubbles & Annotations:** Permanent Marker (Google Fonts) — deployed sparingly in speech bubbles, sidebar annotations, and the "hand-scrawled" marginalia. Color: #1A0A0A.

**Palette:**
- `#6B0F2A` — Primary deep burgundy (dominant surface, headings, panel fills)
- `#3D0A1A` — Shadow burgundy (text on light, borders, comic panel outlines)
- `#FAF6F0` — Aged cream (primary background, light panel fills)
- `#F2E4C4` — Warm parchment (alt background, halftone dot base)
- `#E8273C` — Pop-art red (speech bubble fills, accent elements, hover states)
- `#F5C842` — Comic yellow (pull-quote highlights, accent band separators)
- `#1A1A1A` — Near-black (body text, thick comic panel rules)
- `#D4B896` — Tan (subtle halftone overlay, marginalia text, muted accents)

## Imagery and Motifs

**Water Bubbles:** The site's signature texture is a fine field of spherical bubbles — not cartoonish circles but semi-transparent water-droplet-style SVG spheres with a subtle specular highlight. These bubble fields appear as section background textures, layered beneath the cream-parchment panels. In the hero, a cascade of these bubbles drifts slowly upward (CSS animation, transform: translateY). They reinforce both "martial arts — water discipline" (Bruce Lee's "be like water") and the idea of speech/thought bubbles from comics.

**Book-Scholarly Motifs:** Every section heading is preceded by a tiny drawn gavel or open-book icon (SVG inline, monochrome line-art). Chapter numbers use large Roman numerals in light EB Garamond — floated right, partially bleeding off the panel edge. Pull-quotes are wrapped in ornamental bracket characters (❮ ❯ styled with CSS). A decorative "Table of Contents" element appears in the sidebar of the hero panel, listing section anchors as if typed on a manual typewriter.

**Pop-Art Ben-Day Dots:** CSS radial-gradient patterns simulate halftone dot textures at 4px dot-spacing. Burgundy dots on cream, cream dots on burgundy. Used as decorative fills inside panel edges and as a full-bleed background for the hero.

**Comic Speech Bubbles:** SVG speech-bubble shapes float near key headlines, containing a single casual observation (e.g., "Yes, you need a waiver." or "Even ninjas have contracts."). Styled with E8273C fill, 1A1A1A thick stroke, Permanent Marker text.

**Panel Ink Lines:** Thin horizontal rule lines (1px, #3D0A1A, 40% opacity) run beneath each paragraph block like ruled notebook paper — barely visible but present, reinforcing the "legal notepad" feel.

## Prompts for Implementation

Build this as a single-page narrative scroll. The first viewport is a theatrical entrance: the three overlapping comic panels animate in from different directions on page load — the left panel slides in from the left, the right from the right, the central title panel drops from above — all settling into position over 800ms with a spring-ease (cubic-bezier(0.34, 1.56, 0.64, 1)).

**Counter-Animate Pattern:** When the user scrolls DOWN, the water bubbles in the hero section animate UP (counter-scroll direction) at 0.4× scroll speed. Simultaneously, the large decorative Roman numerals on section dividers animate in the OPPOSITE horizontal direction from the content — if text slides right on scroll, the numeral slides left. This push-pull tension creates visual depth without parallax complexity.

For the Ben-Day dot backgrounds, use:
```css
background-image: radial-gradient(circle, #6B0F2A 1.5px, transparent 1.5px);
background-size: 8px 8px;
```
On light sections:
```css
background-image: radial-gradient(circle, #F2E4C4 2px, transparent 2px);
background-size: 8px 8px;
background-color: #FAF6F0;
```

The vertical progress spine: a 4px-wide fixed-position left border element. On scroll, a pseudo-element `::after` grows in height using a CSS custom property `--scroll-progress` updated via JS `window.addEventListener('scroll', ...)`. Color fills from `#FAF6F0` to `#6B0F2A` bottom-up.

Speech bubbles use CSS clip-path for the tail:
```css
clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
```

Nav tabs: each anchor uses a border-top: 4px solid #6B0F2A with a small upward projection achieved via a CSS `::before` pseudo-element clipping a trapezoidal shape. Active state: burgundy background, cream text.

On hover over any "case panel" section, the thick black panel border glows to #E8273C (pop-art red) with a 2px box-shadow spread — a subtle "highlighted case" effect.

Typography scale: hero display 160px (clamp to 12vw), section title 56px, pull-quote 32px, body 17px. All EB Garamond except body (Libre Baskerville) and marginalia (Permanent Marker).

AVOID: pricing grids, testimonial carousels, CTA-button grids, hero with stock photography, parallax background images. NO header with logo + hamburger on mobile as the primary nav paradigm — instead use the binder-tab nav.

Animate section entries with IntersectionObserver: each "case panel" fades in and translates up 24px over 500ms when entering viewport. Stagger children by 80ms offsets.

The water-bubble animation for the hero background:
```css
@keyframes bubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-120vh) scale(0.8); opacity: 0; }
}
```
Each bubble SVG circle gets a random animation-duration (8s–20s) and animation-delay (0s–12s), creating an organic, non-looping drift. On scroll, subtract `scrollY * 0.4` from translateY via JS for the counter-animate effect.

## Uniqueness Notes

1. **Pop-art law firm aesthetic**: No other design in the repository combines Ben-Day halftone dot textures, speech-bubble motifs, and deep-burgundy legal seriousness in a single unified language. Most legal-adjacent sites in the repo lean corporate-blue or serif-minimal; this deliberately subverts that.

2. **Counter-animate scroll pattern on water bubbles**: The bubble field moves upward while the user scrolls down — an oppositional motion that creates physical depth. Combined with the Roman numeral counter-direction animation, this gives the page a push-pull energy unique in this collection.

3. **Binder-tab navigation**: The tabbed-divider nav UI (trapezoidal CSS tabs with burgundy projections) draws from the physical vocabulary of legal binders — completely distinct from the sidebar/hamburger/top-bar patterns used elsewhere in the site collection.

4. **"Marginalia" body layout**: Body text panels include handwritten-style annotation glyphs in the right margin (Permanent Marker font at 13px, rotated slightly via CSS transform) — creating a dual-register reading experience (formal text + casual annotation) that no other site in the collection uses.

5. **Seed documented**: `aesthetic: pop-art, layout: hero-dominant, typography: garamond-classic, palette: deep-burgundy, patterns: counter-animate, imagery: water-bubbles, motifs: book-scholarly, tone: approachable-casual`. Avoided overused patterns: parallax (79%), stagger (55%), warm palette (90%), gradient palette (77%). Preferred underused: counter-animate (5%), water-bubbles (4%), pop-art aesthetic (1%), hero-dominant layout (2%).
<!-- DESIGN STAMP
  timestamp: 2026-05-08T22:54:58
  domain: martialaw.quest
  seed: annotation glyphs in the right margin
  aesthetic: Pop-art meets legal scholarship: a site where bold Lichtenstein-style halftone d...
  content_hash: 2d10aa09a9a6
-->
