:root {
    --text: #000;
    --bg: #fff;
    --gray: #888;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 40px;
    max-width: 800px;
}

nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text);
}

#about p {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 600px;
}

.section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 80px;
    margin-bottom: 20px;
}

.project-list {
    list-style: none;
    padding: 0;
}

.project-list li {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.project-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.project-list a:hover {
    color: var(--gray);
}

.project-meta {
    font-size: 0.9rem;
    color: var(--gray);
}

footer {
    margin-top: 100px;
    font-size: 0.7rem;
    color: var(--gray);
}
