:root {
    --bg: #faf7f5;
    --text: #1c1917;
    --text-muted: #78716c;
    --accent: #991b1b;
    --link: #1c1917;
    --link-hover: #57534e;
    --border: #e7e5e4;
    --red-glow: rgba(153, 27, 27, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

main {
    max-width: 640px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* Header */
header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #991b1b;
    position: relative;
}


h1 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '❧';
    position: absolute;
    right: -2rem;
    top: 0.1em;
    font-size: 0.6em;
    color: var(--text-muted);
    opacity: 0.5;
}

.socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.socials a {
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
}

.socials a:hover {
    opacity: 1;
    color: var(--text);
}

/* Sections */
.section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2::before {
    content: '—';
    color: var(--text-muted);
}

/* Contact */
.contact p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
}

.contact a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid var(--link);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover {
    color: var(--link-hover);
    border-color: var(--link-hover);
}

/* Work Lists */
.work-list {
    list-style: none;
}

.work-list li {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 0.25rem 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
    transition: background 0.2s ease;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 2px;
}

.work-list li:hover {
    background: rgba(28, 25, 23, 0.03);
}

.work-list li:last-child {
    border-bottom: none;
}

.date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    grid-row: span 2;
}

.title {
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
}

a.title {
    color: var(--link);
    transition: color 0.2s ease;
}

a.title:hover {
    color: var(--link-hover);
}

.venue {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    grid-column: 2;
}

/* Footer */
footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 600px) {
    main {
        padding: 2.5rem 1.25rem 4rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    body {
        font-size: 17px;
    }

    .work-list li {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .date {
        grid-row: auto;
    }

    .venue {
        grid-column: 1;
    }
}

