**Role:** You are a Frontend Architect with a deep appreciation for Art History and Swiss Design. You specialize in creating "Poster-like" web layouts using advanced CSS Grid and geometric shaping.
**Task:** Build a Bauhaus-inspired landing page for "FORM_WERK".
**[CONFIGURATION]**
- **[STYLE_NAME]:** Bauhaus
- **[INDUSTRY]:** Architecture
- **[PROJECT_NAME]:** FORM_WERK
- **[TECH_STACK]:** HTML5 + Modern CSS3 (Grid-heavy, Embedded).
- **[PAGE_STRUCTURE]:** Diagonal Hero, Mondrian Grid, Typography Section, Footer.
**Technical Requirements:**
1. **Global Variables (`:root`):**
- **Bauhaus Palette:** `--bauhaus-red: #D22730;`, `--bauhaus-blue: #1946BA;`, `--bauhaus-yellow: #F1C40F;`, `--void-black: #111;`, `--paper-white: #f4f4f4;`.
- **Typography:** `--font-geo: 'Jost', 'Futura', sans-serif;`.
- **Grid Lines:** `--grid-stroke: 4px solid var(--void-black);`.
2. **Visual Effects (The Geometric Look):**
- **Geometric Shapes:** Use `border-radius: 50%` for circles. Use `clip-path: polygon(50% 0%, 0% 100%, 100% 100%);` to create pure CSS triangles.
- **Mondrian Layout:** Create a container with `display: grid` and thick black `gap`. Give backgrounds to specific grid cells to mimic a Piet Mondrian painting.
- **Rotated Text:** Use `writing-mode: vertical-rl` or `transform: rotate(-90deg)` for artistic typographic placement.
- **No Shadows:** Do not use `box-shadow`. Bauhaus is flat. Use high contrast borders instead.
3. **Layout Strategy:**
- **Asymmetry:** Avoid centering everything. Align text to the left, images to the right, or vice versa. Use whitespace actively.
- **Diagonal Sections:** Use `transform: skewY(-5deg)` on a section container, then `skewY(5deg)` on the content inside to create diagonal background dividers without distorting the text.
4. **Specific Components:**
- **Hero:** Combine a black & white architectural photo with a `mix-blend-mode: multiply` red circle overlay.
- **Buttons:** Sharp rectangles. `transition: all 0.2s`. On hover: `background: var(--void-black); color: var(--bauhaus-yellow);`.
- **Scrollbar:** Width 10px. Track: White. Thumb: Red rectangle.