259 lines
10 KiB
HTML
259 lines
10 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Augusto Garcialeon — The Honduran Kitchen: Physics of Flavor</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--gold: #d4af37;
|
||
|
|
--dark: #1a1a1a;
|
||
|
|
--stone: #2c2c2c;
|
||
|
|
--text: #e0e0e0;
|
||
|
|
--muted: #aaaaaa;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
background-color: var(--dark);
|
||
|
|
color: var(--text);
|
||
|
|
line-height: 1.6;
|
||
|
|
margin: 0;
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
h1, h2, h3 {
|
||
|
|
color: var(--gold);
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
text-align: center;
|
||
|
|
font-size: 2.2rem;
|
||
|
|
letter-spacing: 0.05em;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
.subtitle {
|
||
|
|
text-align: center;
|
||
|
|
color: var(--muted);
|
||
|
|
font-style: italic;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
max-width: 900px;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
.recipe-card {
|
||
|
|
background-color: var(--stone);
|
||
|
|
border: 1px solid var(--gold);
|
||
|
|
padding: 30px;
|
||
|
|
margin: 40px 0;
|
||
|
|
border-radius: 6px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.recipe-header {
|
||
|
|
border-bottom: 1px solid var(--gold);
|
||
|
|
padding-bottom: 15px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
.recipe-title {
|
||
|
|
font-size: 1.8rem;
|
||
|
|
color: var(--gold);
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
.recipe-subtitle {
|
||
|
|
color: var(--muted);
|
||
|
|
font-style: italic;
|
||
|
|
margin-top: 5px;
|
||
|
|
}
|
||
|
|
.ingredients-list {
|
||
|
|
list-style: none;
|
||
|
|
padding: 0;
|
||
|
|
columns: 2;
|
||
|
|
column-gap: 40px;
|
||
|
|
}
|
||
|
|
.ingredients-list li {
|
||
|
|
margin-bottom: 8px;
|
||
|
|
padding-left: 20px;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.ingredients-list li::before {
|
||
|
|
content: "•";
|
||
|
|
color: var(--gold);
|
||
|
|
position: absolute;
|
||
|
|
left: 0;
|
||
|
|
}
|
||
|
|
.method-section {
|
||
|
|
margin-top: 30px;
|
||
|
|
}
|
||
|
|
.step {
|
||
|
|
margin-bottom: 25px;
|
||
|
|
padding-left: 20px;
|
||
|
|
border-left: 2px solid var(--gold);
|
||
|
|
}
|
||
|
|
.step-number {
|
||
|
|
color: var(--gold);
|
||
|
|
font-weight: bold;
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 5px;
|
||
|
|
}
|
||
|
|
.engineering-note {
|
||
|
|
background-color: rgba(212, 175, 55, 0.1);
|
||
|
|
border: 1px dashed var(--gold);
|
||
|
|
padding: 15px;
|
||
|
|
margin: 20px 0;
|
||
|
|
font-size: 0.95em;
|
||
|
|
font-style: italic;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
.nav-link {
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 40px;
|
||
|
|
color: var(--gold);
|
||
|
|
text-decoration: none;
|
||
|
|
border: 1px solid var(--gold);
|
||
|
|
padding: 10px 20px;
|
||
|
|
border-radius: 4px;
|
||
|
|
transition: all 0.3s ease;
|
||
|
|
}
|
||
|
|
.nav-link:hover {
|
||
|
|
background-color: var(--gold);
|
||
|
|
color: var(--dark);
|
||
|
|
}
|
||
|
|
.image-container {
|
||
|
|
width: 100%;
|
||
|
|
height: 300px;
|
||
|
|
background-color: #000;
|
||
|
|
margin: 20px 0;
|
||
|
|
overflow: hidden;
|
||
|
|
border: 1px solid var(--gold);
|
||
|
|
border-radius: 4px;
|
||
|
|
}
|
||
|
|
.image-container img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
object-fit: cover;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
.citation {
|
||
|
|
font-size: 0.8em;
|
||
|
|
color: var(--muted);
|
||
|
|
text-align: right;
|
||
|
|
margin-top: 10px;
|
||
|
|
}
|
||
|
|
.citation a {
|
||
|
|
color: var(--gold);
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<h1>The Honduran Kitchen</h1>
|
||
|
|
<div class="subtitle">Precision is the only path to flavor.</div>
|
||
|
|
|
||
|
|
<div class="recipe-card">
|
||
|
|
<div class="recipe-header">
|
||
|
|
<h2 class="recipe-title">Baleadas de Tegucigalpa</h2>
|
||
|
|
<div class="recipe-subtitle">The Geometry of the Fold</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="image-container">
|
||
|
|
<img src="https://images.unsplash.com/photo-1626202158727-c44531696d6b?q=80&w=1200&auto=format&fit=crop" alt="Golden corn tortillas stacked, steam rising in a rustic kitchen">
|
||
|
|
<div class="citation">Source: Unsplash | License: Free to use</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="engineering-note">
|
||
|
|
<strong>Structural Analysis:</strong> The baleada is not merely food. It is a thin-shell structure. The tortilla (membrane) must possess sufficient tensile strength to contain the aggregate (refrijido, beans, cheese) without buckling. The fold angle must be precisely 45° to maximize load distribution. Failure occurs when hydration exceeds the critical threshold of the starch matrix.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h3>Variables (Ingredients)</h3>
|
||
|
|
<ul class="ingredients-list">
|
||
|
|
<li>Masa Harina (fine grind): 200g ± 0.5g</li>
|
||
|
|
<li>Water (boiled, cooled to 85°C): 180ml ± 1ml</li>
|
||
|
|
<li>Salt (sea): 2.5g</li>
|
||
|
|
<li>Refrijido (sour cream alternative): 60g</li>
|
||
|
|
<li>Frijoles negros (black beans, pressure-cooked): 90g</li>
|
||
|
|
<li>Queso fresco (fresh curd): 40g</li>
|
||
|
|
<li>Cacao powder (unsweetened): 1 pinch (for depth)</li>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
<div class="method-section">
|
||
|
|
<h3>Methodology (Procedure)</h3>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase I: Hydration & Gelatinization</span>
|
||
|
|
Mix masa harina and salt. Introduce water at 85°C. Knead for exactly 120 seconds until viscosity reaches 1.2 Pa·s. Rest for 10 minutes. This allows starch granules to swell uniformly.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase II: Membrane Formation</span>
|
||
|
|
Portion dough into 45g spheres. Press onto hot plate (175°C) for 18 seconds per side. Target thickness: 2mm uniform tolerance. The surface must develop a Maillard lattice of micro-cracks, not burn.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase III: Aggregate Integration</span>
|
||
|
|
Spread refrijido (shear-thinning layer) followed by beans (granular core). The cheese is applied last to maintain phase separation.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase IV: Critical Fold</span>
|
||
|
|
Fold the tortilla at 45°. Apply light downward pressure. The edge seal must compress the starch layers without rupturing the membrane.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="engineering-note">
|
||
|
|
<strong>Risk Assessment:</strong> Common failure modes include: (1) Tortilla brittleness due to under-hydration; (2) Structural collapse during Phase IV due to excessive moisture in the bean aggregate; (3) Thermal shock causing delamination. Always verify the temperature gradient before folding.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="recipe-card">
|
||
|
|
<div class="recipe-header">
|
||
|
|
<h2 class="recipe-title">Sopa de Carnero</h2>
|
||
|
|
<div class="recipe-subtitle">Thermal Equilibrium of the Broth</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="engineering-note">
|
||
|
|
<strong>Heat Transfer Principle:</strong> This soup relies on conductive heat transfer through bone marrow. The collagen-to-gelatin conversion requires sustained temperature above 95°C for 180 minutes. Any fluctuation below this threshold halts the extraction of umami compounds.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h3>Variables (Ingredients)</h3>
|
||
|
|
<ul class="ingredients-list">
|
||
|
|
<li>Lamb shank (bone-in): 800g</li>
|
||
|
|
<li>Yucca (Manihot esculenta): 400g, cubed</li>
|
||
|
|
<li>Papaya (unripe, green): 300g, diced</li>
|
||
|
|
<li>Tomato (vine-ripened): 200g, crushed</li>
|
||
|
|
<li>Garlic (aged): 15 cloves, smashed</li>
|
||
|
|
<li>Oregano (wild): 5g dried leaves</li>
|
||
|
|
<li>Broth volume: 3.5L ± 50ml</li>
|
||
|
|
</ul>
|
||
|
|
|
||
|
|
<div class="method-section">
|
||
|
|
<h3>Methodology (Procedure)</h3>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase I: Protein Denaturation</span>
|
||
|
|
Sear lamb shanks in rendered fat at 190°C until crust formation. This locks the internal juices via the Maillard reaction.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase II: Hydrolysis</span>
|
||
|
|
Submerge meat in boiling water. Maintain rolling boil for 120 minutes. Skim scum every 15 minutes to prevent protein coagulation clouding the broth.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase III: Starch Suspension</span>
|
||
|
|
Add yucca cubes. Simmer for 45 minutes. The goal is partial gelatinization—firm center, yielding exterior.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="step">
|
||
|
|
<span class="step-number">Phase IV: Acid Injection</span>
|
||
|
|
Introduce unripe papaya in final 10 minutes. Its enzymatic activity (papain) tenderizes the remaining connective tissue without disintegrating the fruit.
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div style="text-align: center; margin-top: 50px;">
|
||
|
|
<a href="index.html" class="nav-link">Return to the Workshop</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|