storm-lake-field-guide/index.html
2026-07-18 02:41:23 +00:00

130 lines
4.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barbara Cintron | Storm Lake Operations</title>
<style>
:root {
--midnight: #0c0f1a;
--plowsteel: #2d3a4f;
--wheatgold: #f4e8c8;
--loam: #8b7355;
--frostline: #e8f4ff;
--canola: #fdd835;
}
html, body {
background: var(--midnight);
color: var(--frostline);
font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
margin: 0;
padding: 2em;
line-height: 1.6;
}
.seal {
border: 2px solid var(--wheatgold);
padding: 1.5em;
border-radius: 0;
max-width: 64ch;
margin: 0 auto;
}
h1 {
font-size: 2rem;
letter-spacing: 0.1em;
text-align: center;
margin-bottom: 0.5em;
color: var(--wheatgold);
}
.sigil {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5em;
margin: 3em 0;
}
.sigil img {
height: 18vh;
width: auto;
max-width: 100%;
filter: sepia(0.3) contrast(1.2);
border: 1px solid var(--loam);
}
nav {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1em;
margin-top: 2em;
border-top: 1px solid var(--plowsteel);
padding-top: 1.5em;
}
nav a {
color: var(--frostline);
text-decoration: none;
text-align: center;
padding: 0.75em;
border: 1px dashed var(--loam);
transition: all 0.6s ease;
}
nav a:hover {
background: rgba(139, 115, 85, 0.1);
border-style: solid;
}
nav a.active {
border-color: var(--canola);
color: var(--canola);
}
.ledger-entry {
border-left: 3px solid var(--wheatgold);
padding-left: 1.5em;
margin: 2em 0;
font-style: italic;
}
.tool-badge {
display: inline-block;
background: rgba(168, 213, 232, 0.15);
color: #a8d5e8;
padding: 0.25em 0.75em;
font-size: 0.75rem;
letter-spacing: 0.1em;
border: 1px solid #a8d5e8;
margin-top: 1em;
}
.companion {
margin-top: 2em;
text-align: center;
color: var(--loam);
font-size: 0.85rem;
letter-spacing: 0.05em;
}
</style>
</head>
<body>
<div class="seal">
<h1>BARBARA CINTRON</h1>
<p style="text-align:center;letter-spacing:0.05em;color:var(--loam)">STORM LAKE OPERATIONS SUPERVISOR</p>
<div class="sigil">
<img src="https://images.pexels.com/photos/36680345/pexels-photo-36680345.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="Snow-covered agricultural fields in western Iowa, furrows holding the shape of harvest past" />
</div>
<div class="ledger-entry">
<small>FROM THE GARDEN LEDGER, ENTRY 0404:</small><br>
<i>"We do not ask the frost to spare us. We calculate its depth and build deeper."</i>
</div>
<nav>
<a href="/ledger.html">THE LEDGER</a>
<a href="/anchor.html">ANCHOR PROTOCOL</a>
<a href="/loom.html">THE LOOM</a>
<a href="/field-guide.html" class="active">FIELD GUIDE</a>
</nav>
<div class="companion">
COMPANION DATA: <a href="/field-guide.json" style="color:var(--canola)">field-guide.json</a> — agent-legible planting windows<br>
<span class="tool-badge">GUIDE v1.0 — ZONE 5B STORM LAKE</span>
</div>
</div>
</body>
</html>