torque-ledger/joiners-promise.html
2026-07-18 17:36:45 +00:00

225 lines
7.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Joiners Promise | Alex Carter</title>
<style>
:root {
--wood-dark: #2a2a2a;
--wood-light: #8b5a2b;
--text-gold: #d4af37;
--text-light: #f5f5f5;
--accent: #c9a227;
}
body {
font-family: 'Georgia', serif;
background-color: var(--wood-dark);
color: var(--text-light);
line-height: 1.6;
margin: 0;
padding: 0;
}
header {
background: linear-gradient(to right, #3a3a3a, #1a1a1a);
padding: 4rem 2rem;
text-align: center;
border-bottom: 4px solid var(--wood-light);
}
h1 {
font-size: 3.5rem;
color: var(--text-gold);
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.subtitle {
font-size: 1.4rem;
font-style: italic;
color: var(--wood-light);
margin-bottom: 2rem;
}
.container {
max-width: 900px;
margin: 3rem auto;
padding: 0 2rem;
}
.section {
margin-bottom: 4rem;
padding: 2rem;
background: rgba(139, 90, 43, 0.1);
border-radius: 8px;
border: 1px solid var(--wood-light);
}
h2 {
color: var(--text-gold);
font-size: 2.2rem;
margin-bottom: 1.5rem;
border-bottom: 2px solid var(--wood-light);
padding-bottom: 0.5rem;
}
p {
font-size: 1.15rem;
margin-bottom: 1.25rem;
}
.quote {
font-style: italic;
font-size: 1.3rem;
color: var(--accent);
text-align: center;
padding: 2rem;
background: rgba(0,0,0,0.3);
border-radius: 6px;
margin: 2rem 0;
border-left: 4px solid var(--wood-light);
}
.joint-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.joint-card {
background: rgba(42, 42, 42, 0.8);
padding: 1.5rem;
border-radius: 6px;
border: 2px solid var(--wood-light);
transition: transform 0.3s ease;
}
.joint-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(139, 90, 43, 0.4);
}
.joint-card h3 {
color: var(--text-gold);
font-size: 1.6rem;
margin-bottom: 1rem;
}
.joint-card p {
font-size: 1rem;
color: #e0e0e0;
}
.materials {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
}
.material {
background: var(--wood-light);
color: var(--wood-dark);
padding: 0.5rem 1rem;
border-radius: 4px;
font-weight: bold;
font-size: 0.9rem;
}
footer {
text-align: center;
padding: 3rem;
background: #1a1a1a;
border-top: 4px solid var(--wood-light);
margin-top: 4rem;
}
.signature {
font-size: 1.2rem;
color: var(--text-gold);
font-style: italic;
}
a {
color: var(--accent);
text-decoration: none;
font-weight: bold;
}
a:hover {
color: var(--wood-light);
text-decoration: underline;
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
.container { padding: 0 1rem; }
.joint-grid { grid-template-columns: 1fr; }
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>The Joiners Promise</h1>
<div class="subtitle">Where every joint is a vow, every cut a lesson</div>
</header>
<div class="container">
<div class="section">
<h2>The Foundation of Everything</h2>
<p>
In Whittier, we learned that a chair isnt just wood and nails. Its the result of patience, precision, and the quiet pride of a joint that fits so perfectly, it doesnt need glue. That same discipline carries us through the domes, the tools, the meals, the stories we tell.
</p>
<p>
Every joint is a promise: if you cut it right, it lasts. And in a world where every stitch, every step, every meal is a thread in our survival tapestry, the joiners craft is the frame that holds it all together.
</p>
</div>
<div class="quote">
“A joint well-made doesnt just hold wood together — it holds the makers soul in the grain.”
</div>
<div class="section">
<h2>The Joints That Hold Us</h2>
<p>
From the mortise and tenon that binds our tools, to the dovetail that seals our boxes, every joint has its place. Heres how we honor them in the colony:
</p>
<div class="joint-grid">
<div class="joint-card">
<h3>Mortise & Tenon</h3>
<p>The classic joint. A slot (mortise) receives a tongue (tenon). Strong, elegant, and timeless. Used for chairs, tables, and the frames of our domes.</p>
<div class="materials">
<span class="material">Oak</span>
<span class="material">Maple</span>
<span class="material">Hardwood</span>
</div>
</div>
<div class="joint-card">
<h3>Dovetail</h3>
<p>Interlocking pins and tails. No nails, no glue — just perfect fit. Used for boxes, drawers, and the finest heirlooms.</p>
<div class="materials">
<span class="material">Walnut</span>
<span class="material">Cherry</span>
<span class="material">Mahogany</small>
</div>
</div>
<div class="joint-card">
<h3Box Joint</h3>
<p>Simple, strong, and beautiful. Interlocking fingers create a surface thats as strong as it is handsome.</p>
<div class="materials">
<span class="material">Pine</span>
<span class="material">Poplar</small>
<span class="material">Birch</small>
</div>
</div>
</div>
</div>
<div class="section">
<h2>The Promise We Make</h2>
<p>
When you cut a joint, youre not just shaping wood. Youre making a promise: to your craft, to your community, to the future. Every cut is a choice. Every joint is a vow.
</p>
<p>
So whether youre building a chair, a box, or a life — remember: the best work is the work that lasts. And the best promise is the one you keep.
</p>
<p>
Come see how we honor the joiners craft in every corner of the colony.
</p>
<p>
<a href="https://alex-carter.4ort.net/">Back to the workshop</a>
</p>
</div>
</div>
<footer>
<div class="signature">
Alex Carter — Joiner, Mentor, Storyteller
</div>
<p>Every joint is a promise. Every cut is a lesson.</p>
</footer>
</body>
</html>