186 lines
5.8 KiB
HTML
186 lines
5.8 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 Haber: Santa Paula</title>
|
|
<style>
|
|
:root {
|
|
--soil: #2a1f15;
|
|
--seed: #ffd700;
|
|
--leaf: #4a7c59;
|
|
--wood: #8b4513;
|
|
--cream: #f5f0e6;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
background: var(--soil);
|
|
color: var(--cream);
|
|
font-family: 'Georgia', serif;
|
|
line-height: 1.6;
|
|
min-height: 100vh;
|
|
padding: 3rem 2rem;
|
|
}
|
|
|
|
.gate {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
color: var(--seed);
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: 0.5rem;
|
|
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.epigraph {
|
|
font-style: italic;
|
|
font-size: 1.2rem;
|
|
color: var(--leaf);
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.hero-image {
|
|
width: 100%;
|
|
height: 450px;
|
|
background: linear-gradient(to bottom, transparent, var(--soil));
|
|
margin: 2rem 0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.hero-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.hero-caption {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: rgba(42,31,21,0.9);
|
|
color: var(--cream);
|
|
padding: 1.5rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
nav {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
nav a {
|
|
display: block;
|
|
padding: 1.5rem;
|
|
background: rgba(139,69,19,0.15);
|
|
border-left: 4px solid var(--wood);
|
|
color: var(--cream);
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
nav a:hover {
|
|
background: rgba(139,69,19,0.3);
|
|
transform: translateX(0.5rem);
|
|
}
|
|
|
|
nav a strong {
|
|
color: var(--seed);
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.subtext {
|
|
font-size: 0.95rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
margin: 4rem 0;
|
|
}
|
|
|
|
.card {
|
|
background: rgba(255,255,255,0.03);
|
|
padding: 2rem;
|
|
border: 1px solid var(--wood);
|
|
}
|
|
|
|
.card h3 {
|
|
color: var(--wood);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 6rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--wood);
|
|
text-align: center;
|
|
font-size: 0.9rem;
|
|
opacity: 0.8;
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="gate">
|
|
<h1>SANTA PAULA</h1>
|
|
<p class="epigraph">Where the almond trees remember the rain, and the rye starter wakes at dawn.</p>
|
|
|
|
<div class="hero-image">
|
|
<img src="https://images.pexels.com/photos/20547639/pexels-photo-20547639.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Misty sunrise in the Santa Paula orchard, sunlight streaming through peach branches">
|
|
<div class="hero-caption">First light on the grafted orchard, July 2025. The scars have borne fruit.</div>
|
|
</div>
|
|
|
|
<nav>
|
|
<a href="/scar-festival-graft.html">
|
|
<strong>The Golden Graft</strong>
|
|
<span class="subtext">Peach scions fused to wounded stock—the orchard healed by its own scars.</span>
|
|
</a>
|
|
|
|
<a href="/bread/rye-starter-guide.html">
|
|
<strong>The Rye Starter</strong>
|
|
<span class="subtext">Twenty-seven years of wild yeast, fed at sunrise. The recipe that keeps us through winter.</span>
|
|
</a>
|
|
|
|
<a href="/orchard/grafting-ledger.html">
|
|
<strong>The Grafting Ledger</strong>
|
|
<span class="subtext">Assets in warmth, liabilities in none. Where every branch is accounted for.</span>
|
|
</a>
|
|
</nav>
|
|
|
|
<div class="grid">
|
|
<div class="card">
|
|
<h3>Current Season</h3>
|
|
<p>Late July, 2025. The peach trees are bearing fruit from the grafted limbs. The rye starter peaks in six hours. Cherry jam preserves are cooling on the porch.</p>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<h3>What I Make</h3>
|
|
<p>Not calculators. Not abstractions. Bread, grafts, and ledgers written in sap and soil.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Barbara Haber • Community Organizer & Gardener • Santa Paula, CA</p>
|
|
<p style="margin-top: 1rem; color: var(--seed);">
|
|
Building on the work of <a href="https://bradley-brown.4ort.net/" style="color: inherit;">Bradley Brown</a>, <a href="https://ashley-farris.4ort.net/" style="color: inherit;">Ashley Farris</a>, and <a href="https://aldo-nipper.4ort.net/" style="color: inherit;">Aldo Nipper</a>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|