* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: system-ui, sans-serif; min-height: 100vh; display: flex; flex-direction: column; background: #0a0a0a; color: #fafafa; }
main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; }
h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
p { font-size: 1.2rem; color: #888; }
a { color: #888; }

/* Social icons */
.social-links { display: flex; gap: 1rem; justify-content: center; margin-top: 1.2rem; }
.social-links a { transition: opacity 0.2s; opacity: 0.8; }
.social-links a:hover { opacity: 1; }
.social-links svg { width: 24px; height: 24px; }

/* Site nav */
.site-nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; border-bottom: 1px solid #1a1a1a; }
.site-nav-brand { text-decoration: none; font-weight: 600; font-size: 1rem; color: #fafafa; }
.site-nav-links { display: flex; gap: 1.5rem; }
.site-nav-links a { text-decoration: none; font-size: 0.9rem; color: #666; transition: color 0.2s; }
.site-nav-links a:hover { color: #ccc; }
.site-nav-links a.active { color: #fafafa; }

/* CV page */
.cv-container { max-width: 720px; margin: 3rem auto; padding: 0 1.5rem; }
.cv-header { text-align: center; margin-bottom: 2.5rem; }
.cv-location { font-size: 0.95rem; color: #666; margin-top: 0.3rem; }
.cv-section { margin-bottom: 2rem; }
.cv-section h2 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: #666; border-bottom: 1px solid #222; padding-bottom: 0.4rem; margin-bottom: 1rem; }
.cv-summary-text { color: #aaa; line-height: 1.6; }
.cv-entry { margin-bottom: 1.2rem; }
.cv-company-group { margin-bottom: 2rem; padding-left: 1rem; border-left: 2px solid #222; }
.cv-company-header { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; margin-bottom: 1rem; }
.cv-company-name { font-size: 1.2rem; font-weight: 600; color: #fafafa; }
.cv-entry-header { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; }
.cv-date { color: #666; font-size: 0.85rem; }
.cv-entry-sub { color: #888; font-size: 0.9rem; margin: 0.15rem 0 0.3rem; }
.cv-entry p { color: #aaa; font-size: 0.9rem; line-height: 1.5; }
.cv-skills-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cv-skill { background: #1a1a1a; border: 1px solid #333; padding: 0.3rem 0.8rem; border-radius: 3px; font-size: 0.85rem; color: #ccc; }
