@font-face {
    font-family: 'Neue Haas Unica';
    src: url('fonts/NeueHaasUnica-Regular.woff2') format('woff2'),
         url('fonts/NeueHaasUnica-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica';
    src: url('fonts/NeueHaasUnica-Bold.woff2') format('woff2'),
         url('fonts/NeueHaasUnica-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --background: #ffffff;
    --link: #ff3700;
    --spacing-unit: 1rem;
}

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

body {
    font-family: "Lucida Grande", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    padding: calc(var(--spacing-unit) * 2);
}

main {
    max-width: 680px;
    margin: 0 auto;
}

section {
    margin-bottom: calc(var(--spacing-unit) * 4);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: calc(var(--spacing-unit) * 2) 0 var(--spacing-unit) 0;
    margin-bottom: 1rem;
}

h1 a {
    color: var(--link);
    text-decoration: none;
}

h1 a:hover {
    text-decoration: none;
}

h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    margin: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 2) 0;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

ul {
    list-style-type: none;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

li {
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.timeline-item {
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
    padding-left: calc(var(--spacing-unit) * 2);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 50%;
}

.year {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.role {
    font-weight: 500;
    margin-bottom: var(--spacing-unit);
}

nav {
    margin-bottom: calc(var(--spacing-unit) * 4);
    color: var(--text-secondary);
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0 0.5rem;
}

nav a:first-child {
    padding-left: 0;
}

nav a:last-child {
    padding-right: 0;
}

nav a:hover {
    color: var(--link);
}

nav a.active {
    color: var(--link);
}

@media (max-width: 768px) {
    body {
        padding: var(--spacing-unit);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 0.9rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 1.25);
    color: var(--text-primary);
    max-width: 95%;
}

.timeline li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-weight: bold;
} 