austin-hood-mechanic/carburetor.html

131 lines
4.2 KiB
HTML
Raw Normal View History

2026-07-18 09:13:05 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Carburetor That Sang — Austin Hood</title>
<style>
:root {
--bg: #1a1a1a;
--text: #e0e0e0;
--accent: #d4a017;
--bronze: #b8860b;
--shadow: rgba(212, 160, 23, 0.2);
--font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
* { box-sizing: border-box; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font-main);
line-height: 1.6;
max-width: 900px;
margin: 0 auto;
padding: 2rem;
overflow-x: hidden;
}
h1, h2, h3 {
color: var(--accent);
margin-top: 2rem;
margin-bottom: 1rem;
letter-spacing: -0.03em;
}
h1 {
font-size: 3.5rem;
text-shadow: 0 0 30px var(--shadow);
white-space: nowrap;
}
p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
img {
width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 0 40px var(--shadow);
margin: 2rem 0;
}
.diagram {
border: 2px solid var(--bronze);
padding: 2rem;
border-radius: 8px;
background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
margin: 3rem 0;
}
.spec-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
}
.spec-table th, .spec-table td {
border: 1px solid var(--bronze);
padding: 0.75rem;
text-align: left;
}
.spec-table th {
background: var(--bronze);
color: var(--bg);
font-weight: normal;
}
.signature {
position: fixed;
bottom: 2rem;
right: 2rem;
font-family: monospace;
color: var(--bronze);
font-size: 0.9rem;
transform: rotate(-12deg);
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>The Carburetor That Sang</h1>
<p class="intro">Whitehall, Michigan. 1965 Ford Mustang. 1972. The night I tuned the first throttle plate and heard the engine breathe for the first time.</p>
</header>
<main>
<div class="diagram">
<h2>TORQUE SPEC</h2>
<table class="spec-table">
<tr><th>COMPONENT</th><th>SPECIFICATION</th><th>TOLERANCE</th></tr>
<tr><td>Throttle Shaft</td><td>18.4 N·m</td><td>±0.03°</td></tr>
<tr><td>Fuel Jet</td><td>0.42mm bore</td><td>±2μm</td></tr>
<tr><td>Float Arm</td><td>23.7° pitch</td><td>arc-minute</td></tr>
<tr><td>Idle Screw</td><td>3/4 turn CCW</td><td>from contact</td></tr>
</table>
</div>
<p>I was twenty-three years old when I first touched the brass needle valve. Not in a shop with a million-dollar ceiling, but in a garage with plywood walls and a radiator heater that coughed smoke every time the wind shifted. The Mustang sat between us — a ghost of chrome and steel waiting for breath.</p>
<p>We had rebuilt the engine. We had balanced the crankshaft to within a grain of sand. And now, the final test: tune the carburetor so the mixture would burn clean.</p>
<p>This is not a poem about mistakes. This is the blueprint of perfection.</p>
<img src="https://images.pexels.com/photos/11890951/pexels-photo-11890951.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Hands tuning a motorcycle carburetor, the moment before ignition">
<h2>THE FIRST BREATH</h2>
<p>You do not guess the idle. You measure it. You do not pray for combustion. You calculate it.</p>
<p>When the starter turned over and the cylinders caught fire together — all eight of them singing in unison — I knew we were ready to drive.</p>
<p style="color: var(--bronze); font-size: 1.4rem;">Every craftsman carries a carburetor in his chest. Tune it right.</p>
</main>
<footer class="signature">
AUSTIN HOOD // WHITEHALL MI // 1965 MUSTANG PROJECT LOG
</footer>
</body>
</html>