horticulture-protocol/garden-guide.html

157 lines
6.7 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>The Inland Guide: Spokane's Soil & Season</title>
<style>
:root {
--bg: #0f1115;
--surface: #1a1d24;
--accent: #d4af37;
--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.7;
max-width: 72ch;
margin: 0 auto;
padding: 3rem 1.5rem;
}
header {
border-bottom: 2px solid var(--accent);
padding-bottom: 2rem;
margin-bottom: 4rem;
}
h1 {
font-size: 2.8rem;
letter-spacing: -0.03em;
margin-bottom: 0.8rem;
}
.subtitle {
color: var(--accent);
font-family: var(--font-mono);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.15em;
}
h2 {
font-size: 1.6rem;
color: var(--accent);
margin-top: 4rem;
margin-bottom: 1.5rem;
border-left: 4px solid var(--accent);
padding-left: 1rem;
}
p {
margin-bottom: 1.5rem;
color: var(--muted);
font-size: 1.05rem;
}
.data-block {
background: rgba(212, 175, 55, 0.08);
border: 1px solid var(--accent);
border-radius: 4px;
padding: 1.5rem;
margin: 2rem 0;
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--text);
}
.data-block pre {
margin: 0.5rem 0;
white-space: pre-wrap;
}
.season-img {
width: 100%;
height: auto;
border-radius: 4px;
margin: 2rem 0;
filter: sepia(20%) contrast(110%);
border: 1px solid #2a2f3a;
}
.caption {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
text-align: center;
margin-top: 0.5rem;
display: block;
}
.back-link {
display: inline-block;
margin-bottom: 2rem;
color: var(--accent);
text-decoration: none;
font-family: var(--font-mono);
font-size: 0.8rem;
}
.back-link:hover {
text-decoration: underline;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<a href="index.html" class="back-link">&larr; Return to Home</a>
<header>
<h1>The Inland Guide</h1>
<div class="subtitle">Spokane's Soil & The Rhythm of the Year</div>
</header>
<section>
<p>I have spent forty years walking these hills. The Spokane Valley is not a place for the impatient gardener. Here, the sun strikes with the fury of a hammer, and the soil drains like a sieve. To grow here is not to dominate the earth, but to negotiate with it.</p>
<p>This is not a calculator. This is a record. A field guide for those willing to learn the language of the dust.</p>
</section>
<section>
<h2>The Substrate: Sandy Loam</h2>
<p>Our valley floor is defined by the glacial outwash of the Ice Age. The result is a sandy loam—a mixture that promises drainage but demands vigilance. It holds air beautifully, but water poorly.</p>
<div class="data-block">
<strong>Van Genuchten Constants (Sandy Loam)</strong><br><br>
<pre>α = 0.036 cm⁻¹ (Pore size distribution)
n = 1.62 (Pore size spread)
θₛ = 0.43 cm³/cm³ (Saturation)
θᵣ = 0.065 cm³/cm³ (Residual moisture)</pre>
<br>
<span style="color: var(--muted);">// Source: USDA NRCS Soil Survey of Spokane County</span>
</div>
<p>These numbers are not abstractions. They are the boundaries of our world. Between saturation and residual lies the Plant-Available Water (PAW)—the narrow window where life persists.</p>
</section>
<section>
<h2>July: The Great Thirst</h2>
<img src="https://images.pexels.com/photos/31970460/pexels-photo-31970460.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Desert garden with cacti in sandy soil" class="season-img">
<span class="caption">Fig 1. Adaptation in the arid zone.</span>
<p>In mid-July, the sun does not ask permission. Evapotranspiration peaks at approximately 5 mm/day. Without irrigation, a root zone of 30cm depth—holding roughly 10 liters of PAW per square meter—is exhausted in two days.</p>
<p>The lesson is simple: frequency over volume. Small, frequent applications mimic the capillary action of the roots themselves. Deluge irrigation is waste; misting is death by drowning.</p>
</section>
<section>
<h2>October: The Closing</h2>
<p>The nights lengthen. The soil cools. This is the season of mulch. A layer of straw or wood chip, applied now, acts as a thermal blanket, preserving the slow decay of nutrients for the spring. It is the final act of stewardship before the snow arrives.</p>
</section>
<section>
<h2>References & Links</h2>
<ul style="list-style: none; padding-left: 0; color: var(--muted);">
<li style="margin-bottom: 0.8rem;"><a href="spokane-soil-deficit.html" style="color: var(--accent);">Interactive Soil Deficit Calculator</a> — The mathematical model underlying this guide.</li>
<li style="margin-bottom: 0.8rem;"><a href="https://websoilsurvey.sc.egov.usda.gov/App/WebSoilSurvey.aspx" style="color: var(--accent);">USDA Web Soil Survey</a> — Official mapping of the Spokane Basin.</li>
<li style="margin-bottom: 0.8rem;"><a href="https://en.wikipedia.org/wiki/Van_Genuchten_model" style="color: var(--accent);">Van Genuchten Model (Wikidata Q2077787)</a> — The physics of unsaturated flow.</li>
</ul>
</section>
<footer style="border-top: 1px solid var(--surface); padding-top: 3rem; margin-top: 5rem; text-align: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted);">
<p>&copy; 2026 Benjamin Salais • Spokane, WA</p>
<p>Built for the long term.</p>
</footer>
</body>
</html>