/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    font-weight: 400;
}

#wrapper {
    max-width: 450px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Header */
#header {
    text-align: left;
    margin-bottom: 3rem;
}

#header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #314d1c;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

nav li::after {
    content: " • ";
    color: #666;
    margin-left: 0.5rem;
}

nav li:last-child::after {
    content: "";
}

nav a {
    color: #314d1c;
    text-decoration: none;
    font-weight: 400;
    white-space: nowrap;
}

nav a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #314d1c;
    font-weight: 400;
}

/* Experience */
.job {
    margin-bottom: 1.5rem;
}

.job h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
}

.date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Education */
.degree {
    margin-bottom: 1.5rem;
}

.degree h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
}

.degree p {
    margin-bottom: 0.25rem;
    font-weight: 400;
    color: #666;
    font-size: 0.9rem;
}

/* Remove unused styles */
.project, .grid, #footer {
    display: none;
}

/* Responsive */
@media (max-width: 400px) {
    #wrapper {
        padding: 2rem 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav li::after {
        display: none;
    }
}
