338 lines
13 KiB
HTML
338 lines
13 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>The Central Valley Field Manual | Basimah Gomez</title>
|
||
<style>
|
||
:root {
|
||
--sunset-orange: #ff6b35;
|
||
--basalt-black: #1a1a2e;
|
||
--loam-brown: #8b4513;
|
||
--grass-green: #2d5a27;
|
||
--clay-red: #a0522d;
|
||
--sky-blue: #87ceeb;
|
||
}
|
||
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
||
body {
|
||
font-family: 'Georgia', serif;
|
||
background: linear-gradient(180deg, var(--basalt-black) 0%, #2d1f14 100%);
|
||
color: #e8dcc5;
|
||
line-height: 1.6;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
header {
|
||
position: fixed;
|
||
top: 0;
|
||
width: 100%;
|
||
padding: 2rem;
|
||
background: rgba(26, 26, 46, 0.95);
|
||
backdrop-filter: blur(10px);
|
||
z-index: 1000;
|
||
border-bottom: 2px solid var(--sunset-orange);
|
||
}
|
||
|
||
nav ul {
|
||
display: flex;
|
||
gap: 3rem;
|
||
list-style: none;
|
||
justify-content: center;
|
||
}
|
||
|
||
nav a {
|
||
color: var(--sunset-orange);
|
||
text-decoration: none;
|
||
font-size: 0.9rem;
|
||
letter-spacing: 0.1em;
|
||
text-transform: uppercase;
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
nav a:hover {
|
||
color: var(--sky-blue);
|
||
text-shadow: 0 0 20px var(--sky-blue);
|
||
}
|
||
|
||
main {
|
||
max-width: 90ch;
|
||
margin: 8rem auto 4rem;
|
||
padding: 0 2rem;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 3.5rem;
|
||
line-height: 1.1;
|
||
margin-bottom: 2rem;
|
||
background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--clay-red) 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
background-clip: text;
|
||
}
|
||
|
||
h2 {
|
||
font-size: 2rem;
|
||
color: var(--sunset-orange);
|
||
margin: 4rem 0 1.5rem;
|
||
border-left: 4px solid var(--sunset-orange);
|
||
padding-left: 1.5rem;
|
||
}
|
||
|
||
h3 {
|
||
font-size: 1.3rem;
|
||
color: var(--sky-blue);
|
||
margin: 2.5rem 0 1rem;
|
||
font-weight: normal;
|
||
}
|
||
|
||
p {
|
||
margin-bottom: 1.5rem;
|
||
font-size: 1.1rem;
|
||
}
|
||
|
||
.field-note {
|
||
background: rgba(139, 69, 19, 0.2);
|
||
border-left: 3px solid var(--loam-brown);
|
||
padding: 1.5rem;
|
||
margin: 2rem 0;
|
||
font-style: italic;
|
||
}
|
||
|
||
.spec-table {
|
||
width: 100%;
|
||
margin: 2rem 0;
|
||
border-collapse: collapse;
|
||
font-size: 0.95rem;
|
||
}
|
||
|
||
.spec-table th,
|
||
.spec-table td {
|
||
border: 1px solid var(--loam-brown);
|
||
padding: 1rem;
|
||
text-align: left;
|
||
}
|
||
|
||
.spec-table th {
|
||
background: var(--loam-brown);
|
||
color: var(--basalt-black);
|
||
font-weight: normal;
|
||
letter-spacing: 0.05em;
|
||
}
|
||
|
||
.spec-table tr:nth-child(even) {
|
||
background: rgba(139, 69, 19, 0.1);
|
||
}
|
||
|
||
.image-frame {
|
||
position: relative;
|
||
margin: 3rem 0;
|
||
border: 2px solid var(--sunset-orange);
|
||
padding: 1rem;
|
||
background: rgba(26, 26, 46, 0.8);
|
||
}
|
||
|
||
.image-frame img {
|
||
width: 100%;
|
||
height: auto;
|
||
filter: sepia(0.3) contrast(1.1);
|
||
}
|
||
|
||
.image-caption {
|
||
position: absolute;
|
||
bottom: 1rem;
|
||
left: 1rem;
|
||
right: 1rem;
|
||
background: rgba(26, 26, 46, 0.9);
|
||
padding: 0.75rem 1rem;
|
||
font-size: 0.85rem;
|
||
color: var(--sunset-orange);
|
||
border: 1px solid var(--sunset-orange);
|
||
}
|
||
|
||
.citation {
|
||
display: inline-block;
|
||
margin-top: 1rem;
|
||
font-size: 0.8rem;
|
||
color: var(--sky-blue);
|
||
text-decoration: none;
|
||
border-bottom: 1px dotted var(--sky-blue);
|
||
}
|
||
|
||
.citation:hover {
|
||
color: var(--sunset-orange);
|
||
border-color: var(--sunset-orange);
|
||
}
|
||
|
||
footer {
|
||
text-align: center;
|
||
padding: 4rem 2rem;
|
||
border-top: 1px solid var(--loam-brown);
|
||
margin-top: 6rem;
|
||
font-size: 0.9rem;
|
||
opacity: 0.7;
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
h1 { font-size: 2.5rem; }
|
||
nav ul { gap: 1.5rem; flex-wrap: wrap; }
|
||
.spec-table { font-size: 0.85rem; }
|
||
.spec-table th, .spec-table td { padding: 0.75rem; }
|
||
}
|
||
</style>
|
||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav>
|
||
<ul>
|
||
<li><a href="/">home</a></li>
|
||
<li><a href="/calculator/">feast-calculator</a></li>
|
||
<li><a href="/films/turmeric-at-dawn/">film</a></li>
|
||
<li><a href="/guide/" style="color: var(--sky-blue);">field-manual</a></li>
|
||
</ul>
|
||
</nav>
|
||
</header>
|
||
|
||
<main>
|
||
<h1>The Central Valley<br>Field Manual</h1>
|
||
|
||
<div class="field-note">
|
||
"We do not inherit this earth from our ancestors; we borrow it from our children."<br>
|
||
— But first, we must learn to read the soil beneath our feet.
|
||
</div>
|
||
|
||
<p>This is not a book of recipes. This is a book of <strong>place</strong>.</p>
|
||
|
||
<p>Sacramento stands at latitude 37°N, longitude 120.3°W—precisely where the Central Valley grasslands meet the Sierra Nevada's shadow. Here, the earth remembers every drought, every flood, every seed dropped by hand. To cook here, to garden here, to build here—you must first understand what the dirt tells you.</p>
|
||
|
||
<h2>I. The Land That Holds Us</h2>
|
||
|
||
<p><strong>Ecoregon:</strong> California Central Valley Grasslands (WWF Code: NA0801)</p>
|
||
|
||
<p>Before you plant a seed, before you mix your spices, before you strike a match—know where you stand. This ecoregon spans the great bowl between Coast Range and Sierra Nevada, a terrestrial basin that has held water, fire, and life for millennia.</p>
|
||
|
||
<div class="image-frame">
|
||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a2/Central_Valley_Crop_Lands.jpg/1200px-Central_Valley_Crop_Lands.jpg" alt="Satellite view of Central Valley agricultural lands showing the geometric patterns of irrigation against ancient grassland soil">
|
||
<div class="image-caption">
|
||
The Central Valley from above: geometric precision layered over ancient grassland memory.<br>
|
||
Source: Wikimedia Commons / NASA Earth Observatory
|
||
</div>
|
||
</div>
|
||
|
||
<p class="citation"><a href="https://4ort.xyz/entity/california-central-valley-grasslands" target="_blank" rel="noopener">Q104715382 · California Central Valley Grasslands (Wikidata)</a></p>
|
||
|
||
<h3>What the Coordinates Mean</h3>
|
||
<ul>
|
||
<li><strong>Latitude 37°N:</strong> The zone where Mediterranean climate meets continental extremes—hot enough for agave, cold enough for wheat.</li>
|
||
<li><strong>Longitude 120.3°W:</strong> The axis of the American River watershed, where my garden drinks from snowmelt that began as cloud.</li>
|
||
<li><strong>Altitude 0–400m:</strong> Low enough that heat pools, high enough that roots breathe.</li>
|
||
</ul>
|
||
|
||
<h2>II. The Language of Dirt</h2>
|
||
|
||
<p>Soil is not inert matter. It is a <strong>classification system</strong> written in particles, moisture, and time. The Unified Soil Classification System (USCS)—codified by ASTM International—is the grammar we use to speak with the earth.</p>
|
||
|
||
<table class="spec-table">
|
||
<thead>
|
||
<tr>
|
||
<th>Group Symbol</th>
|
||
<th>Group Name</th>
|
||
<th>Particle Size</th>
|
||
<th>Behavior in Heat</th>
|
||
<th>Garden Application</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>GW</strong></td>
|
||
<td>Well-graded gravel</td>
|
||
>4.75mm</td>
|
||
<td>Rapid drainage, minimal retention</td>
|
||
<td>Foundation stability, drainage layers</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>SW</strong></td>
|
||
<td>Well-graded sand</td>
|
||
0.075–4.75mm</td>
|
||
<td>Quick heat transfer, low water-holding</td>
|
||
<td>Root zone warming for nightshade family</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>ML</strong></td>
|
||
<td>Silt, lean clay</td>
|
||
0.002–0.075mm</td>
|
||
<td>Moderate plasticity, moderate retention</td>
|
||
<td>Seed beds for legumes, brassicas</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>CH</strong></td>
|
||
<td>High-plasticity clay</td>
|
||
<0.002mm</td>
|
||
<td>Slow heating, extreme water retention</td>
|
||
<td>Water reservoirs, terracing cores</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>GM</strong></td>
|
||
<td>Gravel-silt mix</td>
|
||
Mixed fractions</td>
|
||
<td>Thermal buffering zone</td>
|
||
<td>Perennial root zones, compost bins</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p class="citation"><a href="https://4ort.xyz/entity/unified-soil-classification-system" target="_blank" rel="noopener">Q905795 · Unified Soil Classification System (ASTM Standard)</a></p>
|
||
|
||
<h2>III. Reading Your Own Yard</h2>
|
||
|
||
<div class="field-note">
|
||
Take a handful of dry soil from your garden. Rub it between thumb and forefinger.<br>
|
||
• If it powders like flour: you hold silt.<br>
|
||
• If it cuts your skin: you hold sand.<br>
|
||
• If it sticks and stretches: you hold clay.<br>
|
||
<br>
|
||
<strong>Your soil is speaking. Learn its vocabulary before you ask it to feed you.</strong>
|
||
</div>
|
||
|
||
<h3>The Hand Test Protocol</h3>
|
||
<ol>
|
||
<li><strong>Dry state:</strong> Grind sample to powder. Note resistance.</li>
|
||
<li><strong>Moist state:</strong> Add water drop-by-drop until ribbon forms.</li>
|
||
<li><strong>Ribbon length:</strong> < 2cm = sand; 2–5cm = silt; >5cm = clay.</li>
|
||
<li><strong>Heat test:</strong> Place wet sample near flame. Observe cracking pattern.</li>
|
||
</ol>
|
||
|
||
<h2>IV. The Feast Equation Revisited</h2>
|
||
|
||
<p>My calculator (<a href="/calculator/" style="color: var(--sunset-orange);">sacramento-soil-feest-calculator</a>) computes yield from USCS groups—but this manual teaches you why those numbers matter.</p>
|
||
|
||
<p>When I stir turmeric into blackened goat shoulder, I am not merely mixing spice and meat. I am completing a circuit begun in the Central Valley grasslands, filtered through USCS Group ML, warmed by California sun, and measured in the calories that will sustain a child through winter.</p>
|
||
|
||
<div class="image-frame">
|
||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Turmeric_root_fresh.jpg/800px-Turmeric_root_fresh.jpg" alt="Fresh turmeric rhizome showing orange interior against brown exterior skin">
|
||
<div class="image-caption">
|
||
Turmeric (Curcuma longa): the golden vein that connects soil chemistry to human metabolism.<br>
|
||
Source: Wikimedia Commons / Creative Commons
|
||
</div>
|
||
</div>
|
||
|
||
<h2>V. Cross-References</h2>
|
||
|
||
<ul>
|
||
<li><a href="/" style="color: var(--sky-blue);">Homepage</a> — Where my story begins</li>
|
||
<li><a href="/calculator/" style="color: var(--sky-blue);">Feast Calculator</a> — The mathematics of abundance</li>
|
||
<li><a href="/films/turmeric-at-dawn/" style="color: var(--sky-blue);">Turmeric at Dawn</a> — The film that renders this land in motion</li>
|
||
<li><a href="/guide/data.json" style="color: var(--sunset-orange);">Machine-readable soil constants</a> — For your own tools</li>
|
||
</ul>
|
||
|
||
<footer>
|
||
<p>Built by Basimah Gomez in Sacramento, CA · July 2026</p>
|
||
<p>All coordinates verified against Wikidata Q104715382 · All classifications aligned to ASTM USCS Q905795</p>
|
||
<p>This manual is alive. Return to it when the soil changes.</p>
|
||
</footer>
|
||
</main>
|
||
</body>
|
||
</html>
|