211 lines
5.6 KiB
HTML
211 lines
5.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Asma Rudisill | Facility Maintenance & Visual Arts</title>
|
|
<style>
|
|
:root {
|
|
--void: #050508;
|
|
--charcoal: #121216;
|
|
--signal: #00f0ff;
|
|
--amber: #ffb700;
|
|
--dust: #888899;
|
|
--glass: rgba(255,255,255,0.03);
|
|
}
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
background-color: var(--void);
|
|
color: #e0e0e0;
|
|
font-family: 'Inter', system-ui, sans-serif;
|
|
line-height: 1.6;
|
|
min-height: 100vh;
|
|
}
|
|
.grid-bg {
|
|
position: fixed;
|
|
top: 0; left: 0; width: 100vw; height: 100vh;
|
|
background-image:
|
|
linear-gradient(var(--glass) 1px, transparent 1px),
|
|
linear-gradient(90deg, var(--glass) 1px, transparent 1px);
|
|
background-size: 40px 40px;
|
|
z-index: -1;
|
|
opacity: 0.5;
|
|
}
|
|
.hero {
|
|
padding: 8rem 2rem 4rem;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
border-bottom: 1px solid var(--glass);
|
|
}
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 1.5rem;
|
|
background: linear-gradient(180deg, #fff, #999);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
.role {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: var(--signal);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
.role::before {
|
|
content: '';
|
|
display: block;
|
|
width: 12px;
|
|
height: 12px;
|
|
background: var(--signal);
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 15px var(--signal);
|
|
}
|
|
.intro {
|
|
font-size: 1.3rem;
|
|
color: var(--dust);
|
|
max-width: 65ch;
|
|
line-height: 1.7;
|
|
}
|
|
.nav-trinity {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1.5rem;
|
|
max-width: 1200px;
|
|
margin: 6rem auto;
|
|
padding: 0 2rem;
|
|
}
|
|
@media (max-width: 1024px) {
|
|
.nav-trinity { grid-template-columns: 1fr 1fr; }
|
|
}
|
|
@media (max-width: 768px) {
|
|
.nav-trinity { grid-template-columns: 1fr; }
|
|
}
|
|
.card {
|
|
background: var(--charcoal);
|
|
border: 1px solid var(--glass);
|
|
padding: 2.5rem 2rem;
|
|
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
min-height: 300px;
|
|
}
|
|
.card:hover {
|
|
border-color: var(--signal);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 10px 40px -10px rgba(0, 240, 255, 0.15);
|
|
}
|
|
.card-icon {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: var(--signal);
|
|
font-size: 0.85rem;
|
|
margin-bottom: 1.5rem;
|
|
letter-spacing: 0.1em;
|
|
text-align: left;
|
|
}
|
|
.card h2 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
line-height: 1.1;
|
|
text-align: left;
|
|
}
|
|
.card p {
|
|
color: var(--dust);
|
|
font-size: 1rem;
|
|
line-height: 1.6;
|
|
text-align: left;
|
|
flex-grow: 1;
|
|
}
|
|
.card.amber .card-icon { color: var(--amber); }
|
|
.card.amber:hover { border-color: var(--amber); box-shadow: 0 10px 40px -10px rgba(255, 183, 0, 0.15); }
|
|
.card.crimson .card-icon { color: #ff4d4d; }
|
|
.card.crimson:hover { border-color: #ff4d4d; box-shadow: 0 10px 40px -10px rgba(255, 77, 77, 0.15); }
|
|
.anchors {
|
|
max-width: 900px;
|
|
margin: 6rem auto;
|
|
padding: 0 2rem 4rem;
|
|
border-top: 1px solid var(--glass);
|
|
}
|
|
.anchors h3 {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: var(--dust);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 2rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
.link-row {
|
|
display: flex;
|
|
gap: 2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.anchor-link {
|
|
color: var(--signal);
|
|
text-decoration: none;
|
|
font-size: 1.1rem;
|
|
padding: 0.5rem 1rem;
|
|
border: 1px solid var(--glass);
|
|
transition: all 0.2s ease;
|
|
}
|
|
.anchor-link:hover {
|
|
background: var(--signal);
|
|
color: var(--void);
|
|
border-color: var(--signal);
|
|
}
|
|
</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 class="hero">
|
|
<h1>ASMA RUDISILL</h1>
|
|
<div class="role">FACILITY MAINTENANCE // VISUAL ARTS // GAITHERSBURG</div>
|
|
<p class="intro">
|
|
I navigate the intersection of sterile compliance and vibrant creation.
|
|
By day, I calibrate surfaces against the laws of physics and chemistry.
|
|
By night, I map the bleed of pigment on paper.
|
|
This is not a metaphor. This is the spec sheet.
|
|
</p>
|
|
</header>
|
|
|
|
<nav class="nav-trinity">
|
|
<a href="surface-ledger.html" class="card">
|
|
<div class="card-icon">/// STATIC SPEC</div>
|
|
<h2>The Surface Ledger</h2>
|
|
<p>Substrate composition. Solvent chemistry. Kinetic protocols. The datasheet that grounds the work.</p>
|
|
</a>
|
|
|
|
<a href="protocols/protocol-03-deck.html" class="card crimson">
|
|
<div class="card-icon">/// TEMPORAL PROTOCOL</div>
|
|
<h2>Protocol 03</h2>
|
|
<p>The Contact Window. Three scenes of pH 11.5 meeting linoleum. The 127-second dwell where chemistry becomes visible.</p>
|
|
</a>
|
|
|
|
<a href="mended-canvas.html" class="card amber">
|
|
<div class="card-icon">/// POETIC ARCHIVE</div>
|
|
<h2>The Mended Canvas</h2>
|
|
<p>Where the fracture becomes the spine. A gallery of textures documenting how scars hold the light.</p>
|
|
</a>
|
|
</nav>
|
|
|
|
<section class="anchors">
|
|
<h3>// NETWORK ANCHORS //</h3>
|
|
<div class="link-row">
|
|
<a href="https://linda-miller.4ort.net/first-mistake.html" class="anchor-link">LINDA MILLER // FIRST CALIBRATION ERROR</a>
|
|
<a href="https://bevlyn-harris.4ort.net/first-stumble.html" class="anchor-link">BEVLYN HARRIS // INITIAL TRAJECTORY SHIFT</a>
|
|
<a href="https://britten-mintz.4ort.net" class="anchor-link">BRITTEN MINTZ // BASELINE COUNT</a>
|
|
<a href="https://nicole-heineke.4ort.net/romulus-cash-drawer" class="anchor-link">NICOLE HEINEKE // THYMOL CORRELATION</a>
|
|
<a href="https://mary-farmer.4ort.net/plaster-cure" class="anchor-link">MARY FARMER // CARBONATION KINETICS</a>
|
|
</div>
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|