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

:root {
    --text-color: #000;
    --bg-color: #fff;
    --border-color: #000;
    --link-color: #000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
    padding: 1rem 1rem 5rem 1rem;
    font-size: 0.8125rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    align-items: start;
}

.site-title {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.section-title {
    font-size: 0.8125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

.description {
    font-size: 0.8125rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: none;
    font-weight: 400;
}

.header-right {
    text-align: right;
}

.cv-link {
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
}

.cv-link:hover {
    text-decoration: underline;
}

main {
    margin-top: 0;
    margin-bottom: 0;
}

.artworks-table {
    width: 100%;
    font-size: 0.8125rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    line-height: 1.4;
}

.table-header {
    border-bottom: 1px solid var(--border-color);
    padding: 0.375rem 0 0.5rem;
}

a.table-row {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

a.table-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 1rem 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    line-height: 1.5;
    background-color: var(--bg-color);
}

.timestamp {
    color: var(--text-color);
    font-weight: 400;
}

.contact-info {
    color: var(--text-color);
    font-weight: 400;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    body {
        padding: 1.5rem;
    }

    .main-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .header-right {
        text-align: left;
    }

    .table-row {
        grid-template-columns: 1fr 2fr;
        gap: 1.5rem;
    }

    .table-header > div:last-child,
    a.table-row > div:last-child {
        display: none;
    }
}

@media (max-width: 600px) {
    body {
        padding: 1rem 1rem 5rem 1rem;
    }

    body {
        font-size: 0.75rem;
    }

    .table-header {
        display: none;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.625rem 0;
    }

    a.table-row > div:last-child {
        display: none;
    }

    a.table-row > div:nth-child(2) {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}

