/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
    background-color: #000;
    color: #ccc;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding: 40px 20px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    margin-bottom: 40px;
}

.monogram {
    font-family: 'Work Sans', 'Inter', sans-serif;
    font-size: 140px;
    font-weight: 200;
    color: #224b12;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    user-select: none;
}

.name {
    font-family: 'Work Sans', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.tagline {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    padding: 0;
    font-size: 13px;
    color: #888;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

.contact-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.contact-links a:hover {
    color: #88b787;
}

.contact-links .sep {
    color: #444;
    margin: 0 8px;
    user-select: none;
}

.contact-cv a {
    display: inline-block;
    color: #88b787;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 20px;
    border: 1px solid #224b12;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.contact-cv a:hover {
    background-color: #224b12;
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
    .monogram {
        font-size: 96px;
        margin-bottom: 12px;
    }

    .name {
        font-size: 22px;
    }

    .tagline {
        font-size: 12px;
    }

    .contact {
        padding: 0 16px;
        font-size: 12px;
    }

    .contact-links {
        flex-wrap: wrap;
        gap: 0;
    }

    .contact-links .sep {
        color: #444;
        margin: 0 6px;
    }
}