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

:root {
    --color-bg: #fafafa;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-accent: #4a5568;
    --color-border: #e2e2e2;
    --color-link: #2563eb;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Lora', Georgia, serif;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Header */
header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}

.header-text h1 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.tagline {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.contact a:hover {
    text-decoration: underline;
}

.contact .separator {
    color: var(--color-text-light);
    margin: 0 0.5rem;
}

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

section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* About */
.about p {
    margin-bottom: 0.75rem;
}

.placeholder-note {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Personal */
.personal-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pets-photo {
    width: 180px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.personal-content p {
    margin: 0;
}

/* Resume */
.resume-section {
    margin-bottom: 2rem;
}

.resume-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.entry {
    margin-bottom: 1.5rem;
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.entry-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.entry-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.entry-subtitle {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 0.25rem;
}

.entry p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

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

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .header-text h1 {
        font-size: 1.75rem;
    }

    .entry-header {
        flex-direction: column;
        gap: 0;
    }

    .entry-date {
        font-size: 0.85rem;
    }

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

    .pets-photo {
        width: 200px;
    }
}
