247 lines
8.7 KiB
HTML
247 lines
8.7 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 Kitchen Pass | The First Table</title>
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="The Kitchen Pass | The First Table">
|
|
<meta property="og:description" content="The kitchen pass is where the real battle is fought. The heat, the noise, the pressure. Every ticket is a challenge, every dish a masterpiece. You">
|
|
<meta property="og:image" content="https://pixabay.com/get/g391e565bcc9b339c6727a5420025cf735606b96aef72504e37ce2bbd5336befcb0f4ea4dacb787e5daf36143de91ea880e2905616d9317b851cc45c1868dcb69_1280.png">
|
|
<meta property="og:url" content="https://bryan-mubarak.4ort.net/kitchen-pass.html">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="description" content="The kitchen pass is where the real battle is fought. The heat, the noise, the pressure. Every ticket is a challenge, every dish a masterpiece. You're the…">
|
|
<style>
|
|
:root {
|
|
--bg: #0a0a0a;
|
|
--text: #e0e0e0;
|
|
--accent: #c9a227;
|
|
--card-bg: #1a1a1a;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Georgia', serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 300;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 1rem;
|
|
background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-block;
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 2rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.back-link:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.content {
|
|
background: var(--card-bg);
|
|
padding: 3rem;
|
|
border-radius: 12px;
|
|
border: 1px solid #333;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.content h2 {
|
|
font-size: 2.2rem;
|
|
color: var(--accent);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.content p {
|
|
font-size: 1.2rem;
|
|
line-height: 1.9;
|
|
margin-bottom: 1.5rem;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.pass-stations {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.pass-station {
|
|
background: #2a2a2a;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
border-top: 4px solid var(--accent);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.pass-station:hover {
|
|
transform: translateY(-8px);
|
|
}
|
|
|
|
.pass-station h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.pass-station p {
|
|
font-size: 1rem;
|
|
line-height: 1.7;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.philosophy {
|
|
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
|
|
padding: 2.5rem;
|
|
border-radius: 8px;
|
|
border-left: 4px solid var(--accent);
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.philosophy blockquote {
|
|
font-size: 1.4rem;
|
|
font-style: italic;
|
|
line-height: 1.7;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.philosophy cite {
|
|
font-size: 1rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.image-showcase {
|
|
margin: 3rem 0;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 15px 50px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.image-showcase img {
|
|
width: 100%;
|
|
height: 500px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.next-station {
|
|
text-align: center;
|
|
margin: 4rem 0;
|
|
padding: 2rem;
|
|
background: linear-gradient(135deg, var(--accent) 0%, #f4d03f 100%);
|
|
color: #0a0a0a;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.next-station h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.next-station button {
|
|
background: #0a0a0a;
|
|
color: #fff;
|
|
padding: 1rem 2.5rem;
|
|
font-size: 1.1rem;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.next-station button:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<a href="host-stand.html" class="back-link">← Back to The Host Stand</a>
|
|
|
|
<header>
|
|
<h1>The Kitchen Pass</h1>
|
|
<p style="font-size": 1.3rem; font-style: italic; opacity: 0.9;">Where the magic happens</p>
|
|
</header>
|
|
|
|
<div class="content">
|
|
<h2>Where the Magic Happens</h2>
|
|
|
|
<p>The kitchen pass is where the real battle is fought. The heat, the noise, the pressure. Every ticket is a challenge, every dish a masterpiece. You're the bridge between the kitchen and the table, the translator of flavors, the conductor of the entire show.</p>
|
|
|
|
<p>I remember my first night on the pass. I was shaking. The kitchen was on fire, the wine list was wrong, and I had to learn to read a room before I could read a menu. That's when I realized: this isn't just about food. It's about *timing*. The perfect dish at the perfect moment can make a night. The wrong one can ruin it.</p>
|
|
|
|
<div class="philosophy">
|
|
<blockquote>
|
|
"Every dish is a canvas. Every garnish is a brushstroke. And every competitor is just another chef trying to paint the same masterpiece."
|
|
</blockquote>
|
|
<cite>— Bryan Mubarak</cite>
|
|
</div>
|
|
|
|
<h2>The Stations</h2>
|
|
|
|
<div class="pass-stations">
|
|
<div class="pass-station">
|
|
<h3>The Expo</h3>
|
|
<p>Every great restaurant has an expo. They're the general, calling every move, making sure every plate is perfect before it leaves the kitchen. Without them, chaos reigns.</p>
|
|
</div>
|
|
|
|
<div class="pass-station">
|
|
<h3>The Pass</h3>
|
|
<p>This is where the magic happens. Every dish is inspected, every garnish placed with precision. One wrong move and the whole experience crumbles.</p>
|
|
</div>
|
|
|
|
<div class="pass-station">
|
|
<h3The Competition</h3>
|
|
<p>Your rivals are always watching. They're learning your moves, copying your techniques. But you? You're always one step ahead. Every dish is a statement.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="image-showcase">
|
|
<img src="https://pixabay.com/get/g391e565bcc9b339c6727a5420025cf735606b96aef72504e37ce2bbd5336befcb0f4ea4dacb787e5daf36143de91ea880e2905616d9317b851cc45c1868dcb69_1280.png"
|
|
alt="ai generated, food, dish, healthy, cooking, cook, restaurant, chef">
|
|
</div>
|
|
|
|
<h2>The Challenge</h2>
|
|
|
|
<p>Every night is a new game. The competition is always trying to outdo you. But you? You're building something that can't be copied. A perfect dish, a seamless experience, a night that guests will talk about for years.</p>
|
|
</div>
|
|
|
|
<div class="next-station">
|
|
<h2>Ready for the quiet?</h2>
|
|
<p style="margin-bottom": 1.5rem;">The back door is where the real work happens.</p>
|
|
<button onclick="window.location.href='/back-door.html'">Enter the Back Door</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|