horticulture-protocol/index.html

187 lines
6.1 KiB
HTML
Raw Normal View History

2026-07-18 18:15:25 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Benjamin Salais | Curriculum Architect</title>
<style>
:root {
--bg: #0f1115;
--surface: #1a1d24;
--accent: #d4af37; /* Gold, but restrained */
--text: #e8e6e3;
--muted: #9ca3af;
--font-main: 'Georgia', serif;
--font-mono: 'JetBrains Mono', 'Courier New', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font-main);
line-height: 1.6;
max-width: 80ch;
margin: 0 auto;
padding: 2rem 1rem;
}
header {
border-bottom: 1px solid var(--surface);
padding-bottom: 2rem;
margin-bottom: 3rem;
}
h1 {
font-size: 2.5rem;
letter-spacing: -0.02em;
margin-bottom: 0.5rem;
}
.subtitle {
color: var(--accent);
font-family: var(--font-mono);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
nav {
display: flex;
gap: 2rem;
margin-top: 2rem;
list-style: none;
flex-wrap: wrap;
}
nav a {
color: var(--text);
text-decoration: none;
font-family: var(--font-mono);
font-size: 0.9rem;
padding: 0.5rem 1rem;
border: 1px solid transparent;
transition: all 0.2s ease;
}
nav a:hover {
border-color: var(--accent);
color: var(--accent);
}
section {
margin-bottom: 4rem;
}
h2 {
font-size: 1.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
border-left: 3px solid var(--accent);
padding-left: 1rem;
}
p {
margin-bottom: 1.5rem;
color: var(--muted);
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.tool-card {
background: var(--surface);
border: 1px solid #2a2f3a;
padding: 2rem;
transition: transform 0.2s ease, border-color 0.2s ease;
}
.tool-card:hover {
transform: translateY(-4px);
border-color: var(--accent);
}
.tool-card h3 {
font-family: var(--font-mono);
color: var(--text);
margin-bottom: 1rem;
}
.tool-card a {
color: var(--accent);
text-decoration: none;
font-weight: bold;
}
footer {
border-top: 1px solid var(--surface);
padding-top: 2rem;
margin-top: 4rem;
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
text-align: center;
}
img.hero {
width: 100%;
height: auto;
border-radius: 4px;
margin-bottom: 2rem;
filter: grayscale(20%) contrast(110%);
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Benjamin Salais</h1>
<div class="subtitle">Spokane, WA • Secondary Education • 30 Years</div>
<nav>
<a href="index.html">Home</a>
<a href="unit-balancer.html">Unit Load Balancer</a>
<a href="spokane-soil-deficit.html">Soil Moisture Calculator</a>
<a href="garden-guide.html">The Inland Guide</a>
<a href="philosophy.html">Philosophy</a>
</nav>
</header>
<section>
<img src="https://images.pexels.com/photos/7213507/pexels-photo-7213507.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Teacher planning curriculum on chalkboard" class="hero">
<h2>The Architecture of Learning</h2>
<p>For thirty years, I have stood before rows of desks, watching the lights flicker on and off in young minds. I have learned that teaching is not the pouring of water, but the careful calibration of pressure.</p>
<p>We do not build curricula by intuition. We build them by measurement. By understanding the limits of working memory, the cost of distraction, and the power of scaffolding.</p>
</section>
<section>
<h2>Active Instruments</h2>
<div class="card-grid">
<div class="tool-card">
<h3>Unit Load Balancer</h3>
<p>A dynamic calculator for curriculum designers. Input topic complexity, environmental noise, and instructional support to determine cognitive sustainability.</p>
<a href="unit-balancer.html">Launch Tool &rarr;</a>
</div>
<div class="tool-card">
<h3>Soil Moisture Deficit</h3>
<p>Grounded in USDA soil physics. Calculate available water capacity for Spokane's sandy loams and estimate days of resilience against July evapotranspiration.</p>
<a href="spokane-soil-deficit.html">Launch Tool &rarr;</a>
</div>
<div class="tool-card">
<h3>The Inland Guide</h3>
<p>A field guide for the Spokane gardener. Narrative physics of the sandy loam, the rhythm of the season, and the art of negotiation with the land.</p>
<a href="garden-guide.html">Read the Guide &rarr;</a>
</div>
</div>
</section>
<footer>
<p>benjamin-salais.4ort.net &bull; Built on the principles of John Sweller &bull; Last updated: July 2026</p>
</footer>
</body>
</html>