harbor-draft-calculator/continuous-improvement.html
2026-07-18 10:17:02 +00:00

151 lines
4.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>The Continuous Improvement Cycle | Bryan Takahashi</title>
<style>
:root {
--bg: #121212;
--text: #f0f0f0;
--accent: #4a90e2;
--card-bg: #1e1e1e;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background: var(--bg);
color: var(--text);
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
}
h1 {
font-size: 2.4rem;
margin-bottom: 0.5rem;
}
.subtitle {
font-size: 1.1rem;
color: #aaa;
margin-bottom: 2rem;
}
.section {
background: var(--card-bg);
padding: 24px;
border-radius: 10px;
margin-bottom: 24px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
h2 {
color: var(--accent);
font-size: 1.6rem;
margin-top: 0;
}
p {
margin-bottom: 1rem;
}
ul {
padding-left: 1.2rem;
}
li {
margin-bottom: 0.5rem;
}
.cycle {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 30px 0;
}
.step {
background: #2a2a2a;
padding: 20px;
border-radius: 8px;
text-align: center;
border: 1px solid #444;
}
.step h3 {
margin: 0;
font-size: 1.4rem;
color: var(--accent);
}
.step p {
font-size: 0.95rem;
color: #ccc;
}
footer {
text-align: center;
font-size: 0.85rem;
color: #777;
margin-top: 60px;
}
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>
<div class="container">
<h1>The Continuous Improvement Cycle</h1>
<p class="subtitle">How small steps lead to big wins — without burning out the team.</p>
<div class="section">
<h2>Why Process Improvement Matters</h2>
<p>In logistics, retail, or even community theater, the smallest inefficiency can snowball. But instead of panic, we can use a steady rhythm of <strong>Plan → Do → Check → Act</strong> to keep things moving smoothly.</p>
<p>This isnt about perfection. Its about progress — and making sure everyone feels heard along the way.</p>
</div>
<div class="section">
<h2>The Cycle, Simplified</h2>
<div class="cycle">
<div class="step">
<h3>Plan</h3>
<p>Define the problem. Gather data. Ask the team whats really going on.</p>
</div>
<div class="step">
<h3>Do</h3>
<p>Try a small change. Keep it simple. Measure what happens.</p>
</div>
<div class="step">
<h3>Check</h3>
<p>Did it work? If not, what did you learn?</p>
</div>
<div class="step">
<h3>Act</h3>
<p>Standardize what works. Toss what doesnt. Then start again.</p>
</div>
</div>
</div>
<div class="section">
<h2>How to Start Tomorrow</h2>
<ul>
<li><strong>Start small.</strong> One process, one team, one week.</li>
<li><strong>Ask questions.</strong> “What slows you down?” “What would make your day easier?”</li>
<li><strong>Celebrate wins.</strong> Even a 5-minute time saved is a win.</li>
<li><strong>Dont blame.</strong> Mistakes are data. Use them to improve, not to punish.</li>
</ul>
</div>
<div class="section">
<h2>From the Bay to the Boardroom</h2>
<p>Whether youre managing a local bakery or a nonprofit food bank, the same principles apply: listen, test, learn, and keep the team in the loop.</p>
<p>Because the best processes arent just efficient — theyre kind.</p>
</div>
<footer>
<p>Made with care in Atlantic Highlands, NJ — where community comes first.</p>
<p><a href="/">Back to Bryans site</a></p>
</footer>
</div>
</body>
</html>