:root {
    --bg: #000;
    --text: #fff;
    --text-muted: #888;
    --divider: rgba(255, 255, 255, 0.2);
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* Header */
.main-header {
    margin-bottom: 80px;
}

.header-metadata {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding-bottom: 20px;
}

.header-divider {
    height: 1px;
    background-color: var(--divider);
}

/* Project Stack */
.project-stack {
    display: flex;
    flex-direction: column;
}

.project-item {
    margin-bottom: 80px;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.project-link:hover {
    opacity: 0.7;
}

.project-header {
    margin-bottom: 20px;
}

.project-type {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.project-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.project-description {
    font-size: 16px;
    max-width: 600px;
}

.project-action {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--text);
    padding-bottom: 4px;
}

.project-divider {
    height: 1px;
    background-color: var(--divider);
    margin-top: 40px;
}

/* Footer */
.main-footer {
    margin-top: 80px;
    padding-top: 40px;
}

.footer-metadata {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .site-wrapper {
        padding: 30px 20px;
    }

    .header-metadata {
        flex-direction: column;
        gap: 10px;
    }

    .project-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-title {
        font-size: 3rem;
    }

    .project-divider {
        margin-top: 30px;
    }
}