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

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #faf9f7;
    color: #2c2a26;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 24px;
}

.container {
    max-width: 520px;
    width: 100%;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1815;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bio {
    font-size: 17px;
    line-height: 1.75;
    color: #5c574e;
    margin-bottom: 32px;
}

.bio strong {
    color: #2c2a26;
}

.divider {
    width: 40px;
    height: 2px;
    background: #c9a96e;
    margin-bottom: 28px;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

nav a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 15px;
    color: #2c2a26;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-left: 3px solid transparent;
    transition: border-color 0.15s ease, padding-left 0.15s ease;
}

nav a:hover {
    border-left-color: #c9a96e;
    padding-left: 22px;
}

nav a .nav-title {
    font-weight: 600;
}

nav a .nav-desc {
    font-size: 13px;
    color: #8a857c;
}

nav a .nav-arrow {
    margin-left: auto;
    color: #c9a96e;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

nav a:hover .nav-arrow {
    opacity: 1;
}

.socials {
    display: flex;
    gap: 24px;
}

.socials a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 13px;
    color: #8a857c;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.socials a:hover {
    color: #2c2a26;
}

@media (max-width: 640px) {
    body {
        padding: 32px 20px;
        align-items: flex-start;
    }
    h1 {
        font-size: 32px;
    }
}
