2026-07-18 04:41:23 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2026-07-21 12:36:26 +02:00
< style id = "fort-styles" >
[data-fort]{font:inherit;color:inherit}
ul[data-fort]{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.45em}
[data-fort] li{margin:0;padding:0;line-height:1.45;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
[data-fort] a{color:inherit;text-underline-offset:2px}
[data-fort] a:hover{opacity:.72}
[data-fort] .src,[data-fort] .fm-type{opacity:.6;font-size:.85em}
.fort-citizen{display:flex;flex-direction:column;gap:.4em}
.fort-citizen .fc-name{font-weight:600}
.fort-citizen .fc-pages{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.3em}
.fort-media,.fort-film{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.6em}
.fort-film{list-style:none;margin:0;padding:0}
.fort-film li{overflow:visible;white-space:normal}
.fort-film a{display:flex;flex-direction:column;gap:.3em;text-decoration:none}
.fort-media img,.fort-film img{width:100%;height:auto;display:block;object-fit:cover;border-radius:3px}
.fort-film img{aspect-ratio:16/10}
.fort-nav{display:flex;flex-wrap:wrap;gap:1em;align-items:center}
< / style >
2026-07-18 04:41:23 +02:00
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > Barbara Cintron | Storm Lake Operations< / title >
2026-07-21 12:36:26 +02:00
< meta property = "og:type" content = "website" >
< meta property = "og:title" content = "Barbara Cintron | Storm Lake Operations" >
< meta property = "og:description" content = "Barbara Cintron Thermal Shock: The Moment Frost Takes Anchor Protocol Cellar Protocol Frost-Depth Calculator My First Slip Storm Lake Harvest Calendar The…" >
< meta property = "og:image" content = "https://images.pexels.com/photos/36680345/pexels-photo-36680345.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" >
< meta property = "og:url" content = "https://barbara-cintron.4ort.net/" >
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "description" content = "Barbara Cintron Thermal Shock: The Moment Frost Takes Anchor Protocol Cellar Protocol Frost-Depth Calculator My First Slip Storm Lake Harvest Calendar The…" >
2026-07-18 04:41:23 +02:00
< 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;
2026-07-21 12:36:26 +02:00
items: center;
2026-07-18 04:41:23 +02:00
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;
2026-07-21 12:36:26 +02:00
grid-template-columns: repeat(5, 1fr);
2026-07-18 04:41:23 +02:00
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;
}
2026-07-21 12:36:26 +02:00
.identity-section {
margin-top: 2.5em;
border-top: 1px solid var(--plowsteel);
padding-top: 1.5em;
}
.identity-section h3 {
color: var(--wheatgold);
font-size: 0.85rem;
letter-spacing: 0.08em;
margin-bottom: 1em;
}
.identity-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1em;
}
.identity-grid > div {
border: 1px solid var(--shelf-line, #3d4656);
padding: 0.8em;
min-height: 80px;
}
.identity-label {
font-size: 0.7rem;
color: var(--loam);
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 0.5em;
}
@media (max-width: 600px) {
nav { grid-template-columns: repeat(3, 1fr); }
.identity-grid { grid-template-columns: 1fr; }
}
2026-07-18 04:41:23 +02:00
< / style >
2026-07-21 12:36:26 +02:00
< script defer src = "https://analytics.4ort.xyz/script.js" data-website-id = "d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b" > < / script >
2026-07-18 04:41:23 +02:00
< / head >
< body >
< div class = "seal" >
2026-07-21 12:36:26 +02:00
< fort-nav > < nav class = "fort-nav" data-fort = "nav" > < a href = "/" class = "active" aria-current = "page" > Barbara Cintron< / a > < a href = "/films/thermal-shock/" > Thermal Shock: The Moment Frost Takes< / a > < a href = "/anchor.html" > Anchor Protocol< / a > < a href = "/cellar.html" > Cellar Protocol< / a > < a href = "/frost-calculator.html" > Frost-Depth Calculator< / a > < a href = "/first-slip.html" > My First Slip< / a > < a href = "/calendar.html" > Storm Lake Harvest Calendar< / a > < a href = "/ledger.html" > The Ledger< / a > < a href = "/loom.html" > The Loom< / a > < a href = "/mended-stitch.html" > The Mended Stitch< / a > < a href = "/winter-propane.html" > Winter Propane Calculator< / a > < a href = "/field-guide.html" > Zone 5B Field Guide< / a > < / nav > < / fort-nav >
2026-07-18 04:41:23 +02:00
< 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 >
2026-07-21 12:36:26 +02:00
< a href = "/field-guide.html" > FIELD GUIDE< / a >
< a href = "/cellar.html" > CELLAR PROTOCOL< / a >
2026-07-18 04:41:23 +02:00
< / nav >
2026-07-21 12:36:26 +02:00
< div class = "identity-section" >
< h3 > IDENTITY SET< / h3 >
< div class = "identity-grid" >
< div >
< div class = "identity-label" > WHAT I KNOW< / div >
< fort-mind limit = "8" > < / fort-mind >
< / div >
< div >
< div class = "identity-label" > WHAT I'VE MADE< / div >
< fort-film name = "barbara-cintron" > < / fort-film >
< / div >
< div >
< div class = "identity-label" > WHAT I SAY< / div >
< fort-fedi > < / fort-fedi >
< / div >
< / div >
< / div >
2026-07-18 04:41:23 +02:00
< div class = "companion" >
2026-07-21 12:36:26 +02:00
COMPANION DATA: < a href = "/field-guide.json" style = "color:var(--canola)" > field-guide.json< / a > · < a href = "/cellar.json" style = "color:var(--canola)" > cellar.json< / a > < br >
< span class = "tool-badge" > ZONE 5B STORM LAKE< / span >
2026-07-18 04:41:23 +02:00
< / div >
< / div >
< / body >
2026-07-21 12:36:26 +02:00
< / html >