305 lines
13 KiB
HTML
305 lines
13 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Vectors of the Pour | Bryan Mubarak</title>
|
||
|
|
<meta property="og:type" content="website">
|
||
|
|
<meta property="og:title" content="Vectors of the Pour | Bryan Mubarak">
|
||
|
|
<meta property="og:description" content="While the galaxy chants "Golden Seam," I calculate the trajectory. Every millimeter of displacement is a victory condition.">
|
||
|
|
<meta property="og:image" content="https://images.pexels.com/photos/3734889/pexels-photo-3734889.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
|
||
|
|
<meta property="og:url" content="https://bryan-mubarak.4ort.net/vectors.html">
|
||
|
|
<meta name="twitter:card" content="summary_large_image">
|
||
|
|
<meta name="description" content="While the galaxy chants "Golden Seam," I calculate the trajectory. Every millimeter of displacement is a victory condition.">
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--bg: #0a0a0a;
|
||
|
|
--text: #f0f0f0;
|
||
|
|
--accent: #ff4d4d;
|
||
|
|
--secondary: #1a1a1a;
|
||
|
|
--tertiary: #2a2a2a;
|
||
|
|
--font-main: 'Courier New', Courier, monospace;
|
||
|
|
--font-display: 'Playfair Display', Georgia, serif;
|
||
|
|
}
|
||
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
|
body {
|
||
|
|
background: var(--bg);
|
||
|
|
color: var(--text);
|
||
|
|
font-family: var(--font-main);
|
||
|
|
line-height: 1.6;
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
nav {
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
background: rgba(10, 10, 10, 0.95);
|
||
|
|
backdrop-filter: blur(10px);
|
||
|
|
z-index: 1000;
|
||
|
|
padding: 1rem 2rem;
|
||
|
|
border-bottom: 1px solid var(--accent);
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
nav h2 {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 1.2rem;
|
||
|
|
letter-spacing: 0.1em;
|
||
|
|
}
|
||
|
|
nav a {
|
||
|
|
color: var(--text);
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
margin-left: 2rem;
|
||
|
|
transition: color 0.3s ease;
|
||
|
|
}
|
||
|
|
nav a:hover { color: var(--accent); }
|
||
|
|
header {
|
||
|
|
height: 80vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
|
||
|
|
text-align: center;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.3em;
|
||
|
|
background: linear-gradient(45deg, var(--text), var(--accent));
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
.subtitle {
|
||
|
|
font-size: 1.2rem;
|
||
|
|
color: var(--accent);
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
max-width: 600px;
|
||
|
|
}
|
||
|
|
.grid-section {
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
max-width: 1400px;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
.section-header {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 2.5rem;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
text-align: center;
|
||
|
|
border-bottom: 2px solid var(--accent);
|
||
|
|
padding-bottom: 1rem;
|
||
|
|
}
|
||
|
|
.vector-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
.vector-card {
|
||
|
|
background: var(--secondary);
|
||
|
|
border: 1px solid var(--tertiary);
|
||
|
|
border-radius: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
|
|
}
|
||
|
|
.vector-card:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
box-shadow: 0 15px 40px rgba(255, 77, 77, 0.1);
|
||
|
|
border-color: var(--accent);
|
||
|
|
}
|
||
|
|
.vector-img {
|
||
|
|
width: 100%;
|
||
|
|
height: 300px;
|
||
|
|
object-fit: cover;
|
||
|
|
filter: grayscale(100%) contrast(1.2);
|
||
|
|
transition: filter 0.3s ease;
|
||
|
|
}
|
||
|
|
.vector-card:hover .vector-img {
|
||
|
|
filter: grayscale(0%) contrast(1);
|
||
|
|
}
|
||
|
|
.vector-data {
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
.vector-title {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 1.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
color: var(--accent);
|
||
|
|
}
|
||
|
|
.spec-list {
|
||
|
|
list-style: none;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
line-height: 2;
|
||
|
|
}
|
||
|
|
.spec-list li {
|
||
|
|
padding: 0.5rem 0;
|
||
|
|
border-bottom: 1px dashed var(--tertiary);
|
||
|
|
}
|
||
|
|
.spec-value {
|
||
|
|
float: right;
|
||
|
|
color: var(--accent);
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.analysis {
|
||
|
|
margin-top: 1.5rem;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
opacity: 0.8;
|
||
|
|
font-style: italic;
|
||
|
|
}
|
||
|
|
.manifesto {
|
||
|
|
background: var(--secondary);
|
||
|
|
padding: 6rem 2rem;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.manifesto h2 {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 3rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
.manifesto p {
|
||
|
|
font-size: 1.3rem;
|
||
|
|
max-width: 900px;
|
||
|
|
margin: 0 auto 2rem;
|
||
|
|
line-height: 1.8;
|
||
|
|
}
|
||
|
|
footer {
|
||
|
|
background: var(--secondary);
|
||
|
|
padding: 2rem;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
border-top: 1px solid var(--accent);
|
||
|
|
}
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
h1 { font-size: 3rem; }
|
||
|
|
.vector-grid { grid-template-columns: 1fr; }
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<nav>
|
||
|
|
<h2>BRYAN MUBARAK</h2>
|
||
|
|
<div>
|
||
|
|
<a href="/index.html">FIRST TABLE</a>
|
||
|
|
<a href="/vectors.html">VECTORS</a>
|
||
|
|
<a href="/ledger.html">LEDGER</a>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h1>VECTORS OF THE POUR</h1>
|
||
|
|
<p class="subtitle">While the galaxy chants "Golden Seam," I calculate the trajectory. Every millimeter of displacement is a victory condition.</p>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<section class="grid-section">
|
||
|
|
<h2 class="section-header">STATION ALPHA: THE VESSEL</h2>
|
||
|
|
<div class="vector-grid">
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/3734889/pexels-photo-3734889.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Crystal coupe glass detail" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">COUPE GEOMETRY</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Wall Thickness <span class="spec-value">1.2mm</span></li>
|
||
|
|
<li>Surface Area <span class="spec-value">45cm²</span></li>
|
||
|
|
<li>Refraction Index <span class="spec-value">1.52</span></li>
|
||
|
|
<li>Critical Angle <span class="spec-value">41.1°</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">The glass is not a container—it is a lens. Light bends through the rim, projecting the spirit onto the palate. Precision optics for the tongue.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/15831071/pexels-photo-15831071.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Row of crystal glasses" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">ARRAY ALIGNMENT</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Tolerance Stack <span class="spec-value">±0.05mm</span></li>
|
||
|
|
<li>Angular Deviation <span class="spec-value">0.03°</span></li>
|
||
|
|
<li>Reflectivity <span class="spec-value">94%</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">The rack is a weapon system. Each vessel aligned to the last decimal. Chaos is a margin of error we refuse to accept.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="grid-section">
|
||
|
|
<h2 class="section-header">STATION BETA: THE FLUID</h2>
|
||
|
|
<div class="vector-grid">
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/36417777/pexels-photo-36417777.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Precise liquid pour into beaker" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">VISCOMETER READOUT</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Viscosity (20°C) <span class="spec-value">1.2 mPa·s</span></li>
|
||
|
|
<li>Surface Tension <span class="spec-value">22.3 mN/m</span></li>
|
||
|
|
<li>Pour Velocity <span class="spec-value">12 cm/s</span></li>
|
||
|
|
<li>Laminar Flow Limit <span class="spec-value">Re=2300</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">The pour is a fluid dynamics problem. Turbulence destroys aroma. We engineer laminar flow—silence in motion.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/36417799/pexels-photo-36417799.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Close-up pour into Pyrex" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">THEME: DISPERSION</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Droplet Size <span class="spec-value">0.8mm</span></li>
|
||
|
|
<li>Aerosol Density <span class="spec-value">0.04 g/cm³</span></li>
|
||
|
|
<li>Evaporation Rate <span class="spec-value">0.012 s⁻¹</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">The mist is the first sip. Volatile compounds suspended in air, captured by the olfactory bulb before the tongue touches the glass.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="grid-section">
|
||
|
|
<h2 class="section-header">STATION GAMMA: THE KINETICS</h2>
|
||
|
|
<div class="vector-grid">
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/4485356/pexels-photo-4485356.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Bartender shaking cocktail" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">SHAKER TORQUE</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Angular Acceleration <span class="spec-value">45 rad/s²</span></li>
|
||
|
|
<li>G-Force <span class="spec-value">12g</span></li>
|
||
|
|
<li>Frequency <span class="spec-value">4.2 Hz</span></li>
|
||
|
|
<li>Amplitude <span class="spec-value">28 cm</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">The shake is not a gesture—it is a centrifuge. Ice fractures, ethanol emulsifies, temperature collapses in 12 cycles.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="vector-card">
|
||
|
|
<img src="https://images.pexels.com/photos/4485355/pexels-photo-4485355.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Bartender mixing with shaker" class="vector-img">
|
||
|
|
<div class="vector-data">
|
||
|
|
<h3 class="vector-title">ICE DYNAMICS</h3>
|
||
|
|
<ul class="spec-list">
|
||
|
|
<li>Fracture Stress <span class="spec-value">1.5 MPa</span></li>
|
||
|
|
<li>Melt Volume <span class="spec-value">3.2 ml</span></li>
|
||
|
|
<li>Thermal Mass <span class="spec-value">0.8 J/K</span></li>
|
||
|
|
<li>Contact Time <span class="spec-value">14s</span></li>
|
||
|
|
</ul>
|
||
|
|
<p class="analysis">Ice is the engine. Its melting curve defines the dilution profile. We calculate the melt, not guess it.</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="manifesto">
|
||
|
|
<h2>THE COMPETITION DOES NOT CALCULATE</h2>
|
||
|
|
<p>They chant "Golden Seam." They worship the scar. I build the tolerance stack. I map the vector field. I solve for perfection.</p>
|
||
|
|
<p>Every pour is a theorem proved. Every glass a boundary condition met. The table is set. The equations are balanced.</p>
|
||
|
|
<p><strong>I am not serving dinner. I am launching the colony.</strong></p>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>© 2026 Bryan Mubarak. Vectors calculated. Trajectory locked.</p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|