176 lines
6.5 KiB
HTML
176 lines
6.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>The Service Flow | Bryan Mubarak</title>
|
||
|
|
<meta property="og:type" content="website">
|
||
|
|
<meta property="og:title" content="The Service Flow | Bryan Mubarak">
|
||
|
|
<meta property="og:description" content="Triage. The first decision tree. Seating density vs. flow rate.">
|
||
|
|
<meta property="og:image" content="https://images.pexels.com/photos/12276391/pexels-photo-12276391.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
|
||
|
|
<meta property="og:url" content="https://bryan-mubarak.4ort.net/">
|
||
|
|
<meta name="twitter:card" content="summary_large_image">
|
||
|
|
<meta name="description" content="Triage. The first decision tree. Seating density vs. flow rate.">
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--bg: #0a0a0a;
|
||
|
|
--fg: #e0e0e0;
|
||
|
|
--accent: #ff3333; /* The red of the rush */
|
||
|
|
--grid: rgba(255, 255, 255, 0.05);
|
||
|
|
--font-main: 'Helvetica Neue', Arial, sans-serif;
|
||
|
|
--font-mono: 'Courier New', monospace;
|
||
|
|
}
|
||
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
|
body {
|
||
|
|
background-color: var(--bg);
|
||
|
|
color: var(--fg);
|
||
|
|
font-family: var(--font-main);
|
||
|
|
line-height: 1.6;
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
.grid-bg {
|
||
|
|
position: fixed;
|
||
|
|
top: 0; left: 0; width: 100%; height: 100%;
|
||
|
|
background-image: linear-gradient(var(--grid) 1px, transparent 1px),
|
||
|
|
linear-gradient(90deg, var(--grid) 1px, transparent 1px);
|
||
|
|
background-size: 40px 40px;
|
||
|
|
z-index: -1;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
header {
|
||
|
|
min-height: 90vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
text-align: center;
|
||
|
|
padding: 2rem;
|
||
|
|
border-bottom: 1px solid var(--accent);
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-size: clamp(2.5rem, 8vw, 6rem);
|
||
|
|
letter-spacing: -0.05em;
|
||
|
|
text-transform: uppercase;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
background: linear-gradient(to bottom, #fff, #999);
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
}
|
||
|
|
.subtitle {
|
||
|
|
font-family: var(--font-mono);
|
||
|
|
color: var(--accent);
|
||
|
|
font-size: 1.2rem;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
max-width: 600px;
|
||
|
|
}
|
||
|
|
.nav-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
width: 100%;
|
||
|
|
max-width: 1400px;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
}
|
||
|
|
.card {
|
||
|
|
background: rgba(255,255,255,0.03);
|
||
|
|
border: 1px solid rgba(255,255,255,0.1);
|
||
|
|
padding: 2rem;
|
||
|
|
transition: transform 0.3s ease, border-color 0.3s ease;
|
||
|
|
cursor: pointer;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.card:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
border-color: var(--accent);
|
||
|
|
}
|
||
|
|
.card h2 {
|
||
|
|
font-size: 2rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
color: var(--accent);
|
||
|
|
}
|
||
|
|
.card p {
|
||
|
|
font-family: var(--font-mono);
|
||
|
|
font-size: 0.9rem;
|
||
|
|
opacity: 0.8;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
.card img {
|
||
|
|
width: 100%;
|
||
|
|
height: 200px;
|
||
|
|
object-fit: cover;
|
||
|
|
filter: grayscale(100%) contrast(1.2);
|
||
|
|
transition: filter 0.5s ease;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
.card:hover img {
|
||
|
|
filter: grayscale(0%) contrast(1.1);
|
||
|
|
}
|
||
|
|
a.card { text-decoration: none; color: inherit; }
|
||
|
|
footer {
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
text-align: center;
|
||
|
|
border-top: 1px solid var(--grid);
|
||
|
|
font-family: var(--font-mono);
|
||
|
|
font-size: 0.8rem;
|
||
|
|
opacity: 0.6;
|
||
|
|
}
|
||
|
|
.data-link {
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 1rem;
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border: 1px solid var(--accent);
|
||
|
|
color: var(--accent);
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: 0.8rem;
|
||
|
|
}
|
||
|
|
.data-link:hover { background: var(--accent); color: #000; }
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="grid-bg"></div>
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h1>Service Flow</h1>
|
||
|
|
<div class="subtitle">
|
||
|
|
The geometry of the rush.<br>
|
||
|
|
From the host stand to the pass.<br>
|
||
|
|
Where chaos meets calculation.
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<main class="nav-grid">
|
||
|
|
<a class="card" href="/host.html">
|
||
|
|
<h2>01 // The Host Stand</h2>
|
||
|
|
<p>Triage. The first decision tree. Seating density vs. flow rate.</p>
|
||
|
|
<img src="https://images.pexels.com/photos/12276391/pexels-photo-12276391.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Chef preparing dishes">
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a class="card" href="/floor.html">
|
||
|
|
<h2>02 // The Floor Plan</h2>
|
||
|
|
<p>Choreography. Vector mapping of server movement. No collisions allowed.</p>
|
||
|
|
<img src="https://images.pexels.com/photos/3297883/pexels-photo-3297883.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Plated dish detail">
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a class="card" href="/pass.html">
|
||
|
|
<h2>03 // The Pass</h2>
|
||
|
|
<p>Critical Junction. Heat transfer. Timing windows. The final inspection.</p>
|
||
|
|
<img src="https://images.pexels.com/photos/4846391/pexels-photo-4846391.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Grilled octopus on marble tray">
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a class="card" href="/station.html">
|
||
|
|
<h2>04 // The Station</h2>
|
||
|
|
<p>Mastery. The individual node. Inventory, timing, and the guest interface.</p>
|
||
|
|
<img src="https://images.pexels.com/photos/29380163/pexels-photo-29380163.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Elegant eclair plating">
|
||
|
|
</a>
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>BRYAN MUBARAK // GREENFIELD, MA // 2026</p>
|
||
|
|
<p>DATA TWIN: <a href="/flow.json" class="data-link">flow.json</a></p>
|
||
|
|
<p>SOURCE: <a href="https://4ort.xyz/entity/restaurant-design" style="color:#fff;">Q124966328</a></p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|