ashley-farris-kitchen-lab/index.html

179 lines
5.7 KiB
HTML
Raw Permalink Normal View History

2026-07-18 06:39:22 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Ashley Farris | Kitchen Garden of Clover, South Carolina</title>
<style>
:root {
--midnight-soil: #0d0d0d;
--ember-glow: #ff6b35;
--quilt-thread: #2d5a27;
--moon-silk: #f0f0f0;
--star-map: #1a1a2e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
height: 100%;
font-family: 'Georgia', 'Palatino Linotype', serif;
background: radial-gradient(circle at 50% 0%, var(--quilt-thread) 0%, var(--midnight-soil) 100%);
color: var(--moon-silk);
overflow-x: hidden;
}
.horizon {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
header {
text-align: center;
padding: 5rem 2rem;
}
h1 {
font-size: clamp(2rem, 5vw, 4rem);
letter-spacing: 0.3em;
text-transform: uppercase;
background: linear-gradient(to bottom, var(--ember-glow), var(--quilt-thread));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 1.5rem;
}
.subtitle {
font-size: 1.3rem;
font-style: italic;
max-width: 600px;
margin: 2rem auto;
line-height: 1.8;
text-align: center;
color: var(--moon-silk);
opacity: 0.9;
}
nav {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 4rem;
padding: 2rem;
background: var(--star-map);
border: 1px solid var(--quilt-thread);
border-radius: 50% / 20%;
width: 80vw;
}
nav a {
color: var(--moon-silk);
text-decoration: none;
font-weight: bold;
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
nav a:hover {
color: var(--ember-glow);
text-shadow: 0 0 30px var(--ember-glow);
}
.work-ledger {
max-width: 900px;
margin: 6rem auto 4rem;
padding: 3rem;
background: linear-gradient(to bottom, var(--star-map), var(--midnight-soil));
border: 1px solid var(--quilt-thread);
border-radius: 20px;
box-shadow: 0 0 100px rgba(45, 90, 39, 0.3);
}
.work-ledger h2 {
font-size: 2rem;
color: var(--ember-glow);
margin-bottom: 2rem;
text-align: center;
}
.ledger-entry {
padding: 2rem;
margin-bottom: 1.5rem;
background: rgba(255, 107, 53, 0.05);
border-left: 4px solid var(--ember-glow);
border-radius: 0 10px 10px 0;
}
.ledger-entry h3 {
font-size: 1.4rem;
color: var(--ember-glow);
margin-bottom: 0.8rem;
}
.ledger-entry p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 0.8rem;
}
.ledger-entry a {
color: var(--ember-glow);
text-decoration: underline;
font-weight: bold;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body class="horizon">
<header>
<h1>ASHLEY FARRIS</h1>
<div class="subtitle">
Clover, South Carolina. Aspiring CNA. Preserver of peaches, keeper of ledgers, builder of tools for the hands that serve.
</div>
<nav>
<a href="/peach-jar-calculator.html">PEACH JAR CALCULATOR</a>
<a href="/canning-protocol.html">CANNING PROTOCOL</a>
<a href="/kitchen-garden.html">KITCHEN GARDEN</a>
<a href="/first-slip.html">FIRST SLIP</a>
<a href="/vita.html">VITA</a>
<a href="/quilts.html">QUILTS</a>
<a href="/covenant.html">COVENANT</a>
</nav>
</header>
<section class="work-ledger">
<h2>LIVE WORK</h2>
<div class="ledger-entry">
<h3>Canning Protocol: Thermal Death Time & Botulism Prevention</h3>
<p>The mathematics of survival. William D. Bigelow's discovery, the pH 4.6 boundary, the F₀-value integral, and altitude corrections that separate nourishment from poison. Every jar is a calculation.</p>
<p><a href="/canning-protocol.html">Enter the Protocol →</a></p>
<p style="font-size: 0.9rem; opacity: 0.8;"><strong>Machine-readable constants:</strong> <a href="/canning-protocol.json">canning-protocol.json</a> | Citations: <a href="https://www.wikidata.org/wiki/Q3983325">Q3983325</a>, <a href="https://www.wikidata.org/wiki/Q173514">Q173514</a></p>
</div>
<div class="ledger-entry">
<h3>Peach Jar Calculator (v1.0)</h3>
<p>An interactive prescription engine for home canning. Input your jar size, altitude, syrup concentration, and pack method. Receive exact measurements for sugar, water, processing time, and headspace — all grounded in USDA National Center for Home Food Preservation standards.</p>
<p><a href="/peach-jar-calculator.html">Launch Calculator →</a></p>
<p style="font-size: 0.9rem; opacity: 0.8;"><strong>Machine-readable constants:</strong> <a href="/peach-jar-calculator.json">peach-jar-calculator.json</a></p>
</div>
<div class="ledger-entry">
<h3>First Slip: The Exploded Jar</h3>
<p>The story of the peach preserve catastrophe that taught me headspace matters more than hope. Every mistake is data.</p>
<p><a href="/first-slip.html">Read the Account →</a></p>
</div>
<div class="ledger-entry">
<h3>Kitchen Garden Ledger</h3>
<p>Three raised beds in red clay soil. Planting calendar, companion matrix, harvest log. Precision over poetry.</p>
<p><a href="/kitchen-garden.html">View the Beds →</a></p>
</div>
</section>
</body>
</html>