﻿# WEF Brand Style Guide — "The Bioneer" Design System

**Canonical reference** for all Wellness Elite Fitness (WEF) websites, documents, magazines, newsletters, one-pagers, decks, and member-facing materials. Derived from *The Bioneer · Vol. 1 Issue 1 · April 2026* (`wef-agency/output/bioneer/bioneer-vol1-issue1.html`) — the gold standard.

Anything produced for WEF — or any WEF sub-brand (Bioneer, EWCP, kiosk, health, etc.) — **must** use this style. Do not invent colors, fonts, or spacing. Do not use Tailwind defaults, generic gradients, emoji, drop shadows outside those defined here, or modern "SaaS landing page" aesthetics. This is an editorial, print-magazine voice rendered digitally.

---

## 1. Design tokens

Use these exact values. Never hard-code anything else.

```css
:root {
  /* Color */
  --cream:      #F5F0E6;              /* primary page background */
  --cream-deep: #EDE6D4;              /* subtle variation */
  --ink:        #1A1A18;              /* body text, headlines */
  --ink-soft:   #1C1C1A;              /* dark panels, dark pages, footer */
  --gold:       #B8943A;              /* accents, CTAs, rules, italic emphasis */
  --gold-light: #C9A84C;              /* dark-page gold accents */
  --gold-pale:  rgba(184,148,58,0.25);/* borders, dividers */
  --gold-wash:  rgba(184,148,58,0.05);/* tinted backgrounds for cards */

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
}
```

**Google Fonts import (required in `<head>`):**

```html
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap" rel="stylesheet"/>
```

---

## 2. Typography rules

- **Display** (Playfair Display) → headlines, eyebrows, stat numbers, pullquotes, bylines, labels, CTAs, page numbers. Italic is used liberally and is a core brand signal.
- **Body** (EB Garamond) → article paragraphs, longform prose, quotes, descriptions.
- **No sans-serif.** Ever. WEF is serif-only.
- **Italic gold emphasis** in titles is a brand signature: wrap the emphasized word in `<em>` and color it `var(--gold)`. Example: `The <em>Biohacker's</em> Blueprint`.
- **Letter-spacing** on eyebrows/labels/section markers: `0.18em`–`0.45em`, `text-transform: uppercase`, small size (9–11px).
- **Drop caps** on the first paragraph of every article: 64px Playfair Display, gold, floated left.
- **Line height:** body 1.65–1.85, display 0.95–1.35.
- Body font sizes: article text 13–14px, pullquotes 22–26px, article titles 28–44px, cover masthead up to 96px.

---

## 3. Layout principles

- **Page background** is always `--cream` (light) or `--ink-soft` (dark "inverted" pages — the `mag-dark` variant).
- **Two-column article layout** (`column-count: 2; column-gap: 0.4in`) for longform prose.
- **Generous margins:** 0.6–0.8in padding on print pages; roomy white space on web.
- **Running heads** at the top of every magazine page: brand/section name left, date right, uppercase, 9px, gold, letter-spaced, underlined with a `--gold-pale` hairline.
- **Page numbers** in gold Playfair at the bottom corner (alternating left/right).
- **Rules & dividers** are always 1px `--gold-pale` — never black, never gray.
- For web: reuse the same vocabulary but scale up type, relax column counts on narrow viewports.

---

## 4. Core component classes

Every WEF HTML output should use these class names verbatim. They are defined in `templates/brand.css` and embedded in the magazine template. **Use `mag-*` for print/magazine-style layouts and `brand-*` for newsletter/email/web.**

| Class | Purpose |
|---|---|
| `mag-page` | A letter-size page container with cream bg + cream padding. |
| `mag-page mag-dark` | Inverted dark page — ink-soft bg, cream text, gold accents. |
| `mag-running-head` | Top-of-page brand/date strip. |
| `mag-page-number` + `.left`/`.right` | Corner page number. |
| `mag-cover` | Full-bleed cover page. |
| `mag-masthead` / `mag-masthead-article` | Italic serif title + small "The" above. |
| `mag-article` | 2-column body with drop cap on first paragraph. |
| `mag-article-eyebrow` | 10px gold uppercase kicker above title. |
| `mag-article-title` | 44px Playfair title with italic gold `<em>`. |
| `mag-article-byline` | Italic byline with gold-pale bottom rule. |
| `mag-pullquote` | Column-span quote block, 26px italic, gold top+bottom rules. |
| `mag-pullquote-attr` | Attribution line inside pullquote. |
| `mag-stat-row` + `mag-stat-pill` | Dark pill with gold number + cream label. For research stats. |
| `mag-callout` | Gold-bordered, gold-washed call-out box (e.g. "The WEF Protocol"). |
| `mag-callout-label` + `mag-callout-body` | Label + body inside callout. |
| `mag-brief` | Numbered research brief row (gold italic number + title + PMID + body). |
| `mag-toc-row` + `mag-toc-section` + `mag-toc-title` + `mag-toc-page` | Table of contents entry. |
| `mag-service-row` + `mag-service-name` + `mag-service-desc` + `mag-service-access` | Services directory entry. |
| `mag-tier` + `mag-tier-head` + `mag-tier-name` + `mag-tier-price` + `mag-tier-desc` | Membership/EWCP tier card. |
| `mag-member-card` + `mag-member-name` + `mag-member-title` + `mag-member-quote` | Member spotlight card (gold wash, gold left border). |
| `mag-cta-block` + `mag-cta-eyebrow` + `mag-cta-title` + `mag-cta-sub` | Center-aligned CTA with gold-pale top+bottom rules. |
| `mag-hsa` | Small dark pill indicating HSA/FSA eligibility. |
| `mag-closing` | Final-page flourish with large italic masthead. |

For reusable CSS copy from the magazine's `<style>` block. Do not redefine — inherit.

---

## 5. The WEF ring logo

The interlocking gold ring SVG (id `#wefring`) appears on covers, headers, and closing pages. Include the `<symbol>` definition once at the top of any document and reference it with `<svg><use href="#wefring"/></svg>`. Default fill: `#B8943A`. Do not recolor.

SVG symbol definition lives in the magazine template. Copy-paste — do not redraw.

---

## 6. Voice & copy rules (binding)

- **Terminology:** "members" (never "clients"), "sessions" (never "appointments"), "Dr. Chaudhari, MD · Double Board-Certified Medical Director" in full on first reference, "Wellness Elite Fitness" (not "WEF" in body copy — only in filenames/internal).
- **Tone:** editorial, confident, measured. Short declarative sentences. No hype, no emoji, no exclamation marks.
- **Research claims:** must cite PubMed IDs, e.g. `(PMID 32209704)`. If it can't be cited, don't claim it.
- **Medical disclaimers:** no treatment promises, no diagnoses, no guaranteed outcomes. Add an italic citation footer on any health article.
- **Dates:** full format — "April 17, 2026", not "4/17/26".
- **Phone:** `(832) 481-2922`.
- **Address:** `104 Whispering Pines Ave · Friendswood, TX 77546`.

## 7. Pricing rules (STRICT — do not violate)

**WEF is membership-only. No à la carte pricing ever appears in member-facing materials.**

### Never publish
- Per-session prices (HBOT $X, Float $Y, etc.)
- Package/10-pack pricing
- Promo codes
- Strikethrough "was/now" pricing

### Only these prices may appear

**Membership tiers** (verified live via GymMaster API · April 2026):

| Tier | 12-mo commitment | 6-mo commitment |
|---|---|---|
| Gold | $65/month | $99/month |
| Platinum | $149/month | $199/month |
| Diamond (Unlimited) | $199/month | $249/month |
| Diamond Plus (Unlimited + Massage) | $87.25/week (≈ $378/mo) | — |

- $10 one-time signup fee applies to all tiers.
- HSA/FSA eligible under Dr. Chaudhari's physician oversight.
- 15% group discount when 3+ members join together.

**Other approved prices:**

| Item | Price |
|---|---|
| Free Day Pass (3 days) | Complimentary · 9AM–5PM Mon–Fri |
| Wellness Day Pass | $59 |
| 30-Day Weight Loss Challenge | $499 |
| Cellular Health Consult (Dana Kantara) | $100/mo · complimentary for Diamond & Diamond Plus |
| EWCP Foundation (corporate, per employee) | $299/employee/mo |
| EWCP Performance (corporate, per employee) | $549/employee/mo |
| EWCP Elite (corporate, per employee) | $899/employee/mo |

Member promos describe the benefit — they do not quote a dollar amount. Before publishing any membership price, re-verify against the live GymMaster portal (`wellnesselite.gymmasteronline.com/portal/signup`). Prices can change.

---

## 8. What NOT to do

- No Tailwind utility classes as a substitute for the tokens above.
- No system fonts, no sans-serif, no modern variable display faces.
- No gradient backgrounds, no glassmorphism, no neon, no drop shadows other than the subtle page-float shadow on `.mag-page`.
- No emoji, anywhere, ever.
- No generic stock iconography. Use the ring SVG and gold rules instead.
- No rounded corners larger than 0 (the style is sharp-edged and editorial — pills and stat blocks have 0 radius).
- No "Learn more →" arrows. CTAs are phrased as editorial labels ("Schedule an Intake", "Continue the Conversation").
- No h1/h2/h3 defaults. Always use the `mag-*` or `brand-*` title classes.

---

## 9. The Friendswood Directory (recurring section)

Every issue of *The Bioneer* closes with a curated **Friendswood Directory** — a two-page spread featuring 6–10 independent local businesses that WEF members return to again and again. Placement: **inside-back-cover spread (pages 62–63)** in a 64-page issue. This is the highest-retention editorial real estate in the magazine — the last content surface before the back cover, and the first one readers see when flipping backward.

### Rules
- **Earned editorial only.** No paid placement. Inclusion is at the discretion of the editors.
- **Independent and local.** No chains unless the chain is the local reference (rare).
- **Geography:** Friendswood · Clear Lake · League City · Webster corridor.
- **No competitive overlap** with WEF services (no other gyms, spas, or wellness facilities).
- **Tone:** understated endorsement. Never gushing. One sentence earns the inclusion.
- **Rotation:** quarterly. No business appears in two consecutive issues.

### Category coverage (aim for this variety per issue)
| Slot | Category |
|---|---|
| 01 | Fine dining |
| 02 | Third-wave coffee |
| 03 | Wine &amp; spirits merchant |
| 04 | Specialty market (butcher, fishmonger, grocery) |
| 05 | Grooming (barbershop or salon) |
| 06 | Florist |
| 07 | Independent bookseller |
| 08 | Weekend destination |
| 09–10 | Optional: leathergoods, jeweler, perfumer, children's shop |

### Layout per entry
- Numbered heading in small-caps gold: `NO. 01 · THE CHEF'S TABLE`
- Business name in italic Playfair, 18px, ink
- Neighborhood + category in small-caps Playfair, 9px, ink-soft 70%
- 1–2 sentence editorial endorsement in EB Garamond italic, 12px, ink-soft

### Submissions
Readers email `hello@mywellnesscorporation.com` with subject line *"Directory Submission."* All submissions reviewed; the editors accept roughly one in ten.

---

## 10. Reference files

- **Canonical magazine:** `wef-agency/output/bioneer/bioneer-vol1-issue1.html`
- **CSS tokens + brand classes:** `wef-agency/templates/brand.css`
- **Magazine template:** `wef-agency/templates/magazine-template.html`
- **Newsletter template:** `wef-agency/templates/newsletter-template.html`
- **B2B one-pager template:** `wef-agency/templates/b2b-onepager-template.html`
- **Template README:** `wef-agency/templates/README.md`

When in doubt, open the canonical magazine and match it. Match it exactly.
