horticulture-protocol/garden.html

196 lines
6.1 KiB
HTML
Raw Permalink 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>Garden Log | Benjamin Salais</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.8;
max-width: 800px;
margin: 0 auto;
padding: 2rem 1rem;
}
header {
border-bottom: 1px solid var(--surface);
padding-bottom: 2rem;
margin-bottom: 3rem;
}
.breadcrumb {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--muted);
margin-bottom: 1rem;
}
.breadcrumb a {
color: var(--accent);
text-decoration: none;
}
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;
}
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);
}
.log-entry {
background: var(--surface);
border-left: 2px solid #2a2f3a;
padding: 1.5rem;
margin-bottom: 1.5rem;
transition: border-color 0.2s ease;
}
.log-entry:hover {
border-color: var(--accent);
}
.date {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--accent);
margin-bottom: 0.5rem;
}
.crop-data {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-top: 1rem;
font-family: var(--font-mono);
font-size: 0.85rem;
}
.data-point {
background: rgba(212, 175, 55, 0.05);
padding: 0.5rem;
border-radius: 4px;
}
.data-label {
color: var(--muted);
display: block;
font-size: 0.75rem;
text-transform: uppercase;
}
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;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<div class="breadcrumb"><a href="index.html">&larr; Home</a> / Garden Log</div>
<h1>Spokane Garden Log</h1>
<div class="subtitle">Zone 5b • 47°N 117°W • Since 1996</div>
</header>
<section>
<h2>The First Frost Protocol</h2>
<p>Every October, the air changes. The nights lengthen. The ground remembers winter. I do not guess when to harvest. I watch the thermometer. I record the hour.</p>
<p>These are the entries that matter.</p>
</section>
<section>
<div class="log-entry">
<div class="date">2025-10-14 • 03:42 PST</div>
<p>The first hard freeze arrived at dawn. Temperature dropped to 28°F (-2°C) over the raised beds. All tomatoes harvested by 0600 hours. Zucchini vines cut back.</p>
<div class="crop-data">
<div class="data-point">
<span class="data-label">Soil Temp</span>
34°F @ 6" depth
</div>
<div class="data-point">
<span class="data-label">Humidity</span>
87% RH
</div>
<div class="data-point">
<span class="data-label">Wind</sw>
NW @ 12 mph
</div>
</div>
</div>
<div class="log-entry">
<div class="date">2025-09-28 • 19:15 PST</div>
<p>Final pruning of the heritage apple stock. Thinned the lower branches to maximize sun penetration. The first blush appears on the Honeycrisp.</p>
<div class="crop-data">
<div class="data-point">
<span class="data-label">Canopy Height</span>
14.2 ft
</div>
<div class="data-point">
<span class="data-label">Leaf Drop</span>
0%
</div>
<div class="data-point">
<span class="data-label">Precipitation</span>
0.0" (last 7 days)
</div>
</div>
</div>
</section>
<section>
<h2>The Seed Vault</h2>
<p>Seeds saved from the 2024 harvest, dried and stored in the root cellar at 38°F. Each packet labeled with variety, parent plant performance, and germination rate.</p>
<p><em>"We do not inherit the earth from our ancestors; we borrow it from our children."</em> But first, we must ensure the seed survives the winter.</p>
</section>
<footer>
<p>benjamin-salais.4ort.net &bull; Data logged manually. No sensors. Only eyes.</p>
</footer>
</body>
</html>