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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 48px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    font-weight: 600;
    color: #999;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tagline {
    color: #666;
    font-size: 16px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 12px;
}

.about p {
    font-size: 16px;
    color: #333;
}

.links ul {
    list-style: none;
}

.links li {
    margin-bottom: 8px;
}

.links a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.2s;
}

.links a:hover {
    border-color: #111;
}

footer {
    text-align: center;
    color: #999;
    font-size: 12px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    body { padding: 24px 16px; }
    h1 { font-size: 24px; }
}
