:root {
    --bg: #faf8f5;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --accent: #c4703f;
    --accent-light: #e8c9a8;
    --card-bg: #ffffff;
    --card-border: #e8e4df;
    --card-hover: #f5f0eb;
    --teal: #4a7c7e;
    --teal-light: #e0edee;
    --amber: #d4953a;
    --amber-light: #fdf0dc;
    --green: #5a8a5e;
    --green-light: #e3f0e4;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    padding: 80px 0 48px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.headshot {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-light);
    flex-shrink: 0;
}

h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.location {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

/* Sections */
section {
    padding: 48px 0;
    border-top: 1px solid var(--card-border);
}

h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text);
}

.about p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about p:last-child {
    margin-bottom: 0;
}

.about a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about a:hover {
    color: var(--teal);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

a.project-card:hover {
    border-color: var(--accent);
    background: var(--card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.project-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.project-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 12px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.live {
    background: var(--green-light);
    color: var(--green);
}

.status.incubating {
    background: var(--amber-light);
    color: var(--amber);
}

.status.coming-soon {
    background: var(--teal-light);
    color: var(--teal);
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 48px;
    padding-top: 2px;
}

.timeline-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.footer-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 48px 0 32px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .headshot {
        width: 130px;
        height: 130px;
    }

    h1 {
        font-size: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 4px;
    }
}
