@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #222;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 48px 24px;
}

.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */

header {
    margin-bottom: 56px;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

/* ─── Works ───────────────────────────────────────────────────────────────── */

.works {
    margin-bottom: 56px;
}

.works h2 {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
    margin-bottom: 20px;
}

.work-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px 28px;
    transition: all 0.2s;
    text-align: left;
}

.work-card:hover {
    border-color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.work-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.work-details {
    font-size: 15px;
    color: #666;
    margin-bottom: 6px;
}

.work-type {
    font-size: 13px;
    font-weight: 400;
    color: #2266aa;
}

/* ─── Links ───────────────────────────────────────────────────────────────── */

.links {
    padding-top: 0;
    border-top: none;
}

.links a {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    text-decoration: none;
    transition: color 0.15s;
}

.links a:hover {
    color: #222;
}

.sep {
    font-size: 14px;
    color: #ccc;
    margin: 0 10px;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .work-card {
        padding: 20px 22px;
    }
}
