245 lines
7.8 KiB
HTML
245 lines
7.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>Guatemalan Kitchen Staples - Carmen Mattos</title>
|
|
<style>
|
|
:root {
|
|
--bg: #0f0f0f;
|
|
--text: #e8e8e8;
|
|
--accent: #2d5a3f;
|
|
--highlight: #d4a017;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Georgia', serif;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
padding: 2rem 0;
|
|
border-bottom: 2px solid var(--accent);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
color: var(--highlight);
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--accent);
|
|
font-style: italic;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
padding: 1rem;
|
|
background: var(--accent);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
nav a {
|
|
color: var(--highlight);
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
nav a:hover {
|
|
background: rgba(212, 160, 23, 0.1);
|
|
}
|
|
|
|
.recipe {
|
|
background: rgba(45, 90, 63, 0.1);
|
|
border: 1px solid var(--accent);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.recipe h2 {
|
|
color: var(--highlight);
|
|
font-size: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
border-bottom: 1px solid var(--accent);
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.recipe img {
|
|
width: 100%;
|
|
height: 400px;
|
|
object-fit: cover;
|
|
border-radius: 8px;
|
|
margin: 1.5rem 0;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.ingredients {
|
|
background: rgba(212, 160, 23, 0.05);
|
|
border-left: 3px solid var(--highlight);
|
|
padding: 1.5rem;
|
|
margin: 1.5rem 0;
|
|
border-radius: 0 8px 8px 0;
|
|
}
|
|
|
|
.ingredients h3 {
|
|
color: var(--highlight);
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.ingredients ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.ingredients li {
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid rgba(212, 160, 23, 0.1);
|
|
}
|
|
|
|
.ingredients li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.method {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.method h3 {
|
|
color: var(--highlight);
|
|
font-size: 1.3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.method ol {
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
.method li {
|
|
padding: 0.75rem 0;
|
|
}
|
|
|
|
.note {
|
|
font-style: italic;
|
|
color: var(--accent);
|
|
padding: 1rem;
|
|
background: rgba(45, 90, 63, 0.1);
|
|
border-radius: 8px;
|
|
margin: 1.5rem 0;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 4rem;
|
|
padding: 2rem;
|
|
border-top: 2px solid var(--accent);
|
|
color: var(--accent);
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>Guatemalan Kitchen Staples</h1>
|
|
<p class="subtitle">Small batches. Every scrap used. Like budgeting for the week in Queens.</p>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="index.html">Home</a>
|
|
<a href="#" style="background: rgba(212, 160, 23, 0.2);">Recipes</a>
|
|
<a href="measurements.html">Kitchen Measurements</a>
|
|
<a href="stories.html">Stories</a>
|
|
<a href="garden.html">Garden</a>
|
|
</nav>
|
|
|
|
<div class="note">
|
|
<strong>Before you begin:</strong> These recipes assume you have read the measurement conversions. "Handful" means 25g. "Until it smells right" means 180°C. Precision honors tradition.
|
|
</div>
|
|
|
|
<div class="recipe">
|
|
<h2>Simple Pepián for Two</h2>
|
|
<p>Stretches chicken bones and yesterday's tortillas. Serves 2 with leftovers for lunch.</p>
|
|
|
|
<img src="https://images.pexels.com/photos/33395015/pexels-photo-33395015.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Bowl of pepián stew with vegetables">
|
|
|
|
<div class="ingredients">
|
|
<h3>Ingredients</h3>
|
|
<ul>
|
|
<li><strong>90g</strong> pumpkin seeds, raw and unshelled</li>
|
|
<li><strong>15-20g</strong> dried guajillo chiles (3-4 pieces)</li>
|
|
<li><strong>1</strong> large tomato, roasted</li>
|
|
<li><strong>½</strong> white onion, charred</li>
|
|
<li><strong>3 cloves</strong> garlic, skin blackened</li>
|
|
<li><strong>25g</strong> fresh epazote leaves</li>
|
|
<li><strong>500ml</strong> bone broth (from saved carcass)</li>
|
|
<li><strong>2 tbsp</strong> vegetable oil</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="method">
|
|
<h3>Method</h3>
|
|
<ol>
|
|
<li>Toast pumpkin seeds at 175°C for 8-10 minutes, stirring twice, until nutty aroma rises.</li>
|
|
<li>Rehydrate chiles in boiling water for 20 minutes. Discard stems and seeds.</li>
|
|
<li>Blend seeds, chiles, tomato, onion, garlic to velvet-smooth paste. Oil should bead on surface.</li>
|
|
<li>Fry paste in oil for 5 minutes until bubbles slow. Pour in broth.</li>
|
|
<li>Simmer 25 minutes. Add epazote in final 3 minutes.</li>
|
|
<li>Serve with torn tortillas. Save bones for tomorrow's broth.</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="recipe">
|
|
<h2>Mole Negro Foundation</h2>
|
|
<p>The 32-ingredient celebration sauce. Begin with these seven pillars.</p>
|
|
|
|
<div class="ingredients">
|
|
<h3>Seven Pillars</h3>
|
|
<ul>
|
|
<li><strong>40g</strong> toasted sesame seeds</li>
|
|
<li><strong>30g</strong> almonds, blanched</li>
|
|
<li><strong>20g</strong> raisins, rehydrated</li>
|
|
<li><strong>15g</strong> corn tortilla, fried crisp</li>
|
|
<li><strong>10g</strong> dark chocolate (70% cacao)</li>
|
|
<li><strong>5g</strong> annatto seeds</li>
|
|
<li><strong>3g</strong> cinnamon bark</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="note">
|
|
Full 32-ingredient protocol coming when I have weighed each component. Do not guess.
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>Tested in Jamaica, Queens kitchens • © 2026 Carmen Mattos</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|