preload-margin-tool/banega-workshop.html

113 lines
4.1 KiB
HTML
Raw Normal View History

2026-07-19 05:36:38 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adam Banega: Workshop Rhythms</title>
<style>
:root {
--copper: #d4af37;
--obsidian: #0a0a0a;
--brass: #f0e68c;
--steel: #2d2d2d;
}
html, body {
background: var(--obsidian);
color: var(--brass);
font-family: 'JetBrains Mono', monospace;
margin: 0;
padding: 2rem;
line-height: 1.6;
}
.workshop-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 4rem auto;
}
.rhythm-card {
border: 1px solid var(--copper);
padding: 2rem;
background: linear-gradient(to bottom right, var(--obsidian), var(--steel));
position: relative;
}
.rhythm-card::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0;
height: 4px;
background: var(--copper);
}
.rhythm-title {
font-size: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 1rem;
color: var(--copper);
}
.rhythm-metric {
font-size: 0.8rem;
opacity: 0.7;
margin-top: 1rem;
}
img {
width: 100%;
height: auto;
border: 2px solid var(--copper);
margin: 1rem 0;
}
.seam-thread {
writing-mode: vertical-rl;
text-orientation: mixed;
transform: rotate(180deg);
position: fixed;
right: 3rem;
top: 50%;
font-size: 2rem;
letter-spacing: 0.5em;
color: var(--copper);
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header style="border-bottom: 4px solid var(--copper); padding-bottom: 2rem; margin-bottom: 4rem;">
<h1 class="rhythm-title">WORKSHOP RHYTHMS</h1>
<p>The load-bearing truth: every scar is a stronger joint.</p>
</header>
<main class="workshop-grid">
<!-- SOIL CYCLE -->
<section class="rhythm-card">
<h2 class="rhythm-title">SOIL CYCLE</h2>
<img src="https://images.unsplash.com/photo-1500496977994-a3073292b63a?q=80&w=1080&auto=format&fit=crop"
alt="Red clay core sample under brass light">
<p>Week 14: The tomato check becomes the dome check. Nitrogen fixed. Phosphorus sealed.</p>
<div class="rhythm-metric">DEPTH: 3ft 6in | COORDINATES: SHELBY COUNTY | TIME: 0400</div>
</section>
<!-- SALSA GRID -->
<section class="rhythm-card">
<h2 class="rhythm-title">SALSA GRID</h2>
<img src="https://images.unsplash.com/photo-1534234828563-02c084695372?q=80&w=1080&auto=format&fit=crop"
alt="Brass-dust percussion matrix in flight">
<p>The clave is not a beat. It is the stress-test for the arch. One hand on the cumin, one on the void.</p>
<div class="rhythm-metric">RPM: 140 | PHASE: SYNC | ORIGIN: COLLIERVILLE</div>
</section>
<!-- MENDED JOINT -->
<section class="rhythm-card">
<h2 class="rhythm-title">MENDED JOINT</h2>
<img src="https://images.unsplash.com/photo-1614726368714-9f882e66283b?q=80&w=1080&auto=format&fit=crop"
alt="Cedar beam scarred with copper alloy">
<p>We do not hide the crack. We pour the gold into it. Every fracture a stronger us.</p>
<div class="rhythm-metric">TENSILE: ∞ | ALLOY: Cu-Au | METHOD: DOVETAIL</div>
</section>
</main>
<footer class="seam-thread">
ADAM BANE GA — WE ARE THE SEAM
</footer>
</body>
</html>