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

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Arial', sans-serif;
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    background: #fff;
}

.cursor.hover {
    transform: scale(1.5);
}

a, button {
    cursor: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.5;
}

.nav-links a.portfolio-link {
    padding: 0.5rem 1.5rem;
    border: 2px solid #000;
    font-weight: 700;
}

.nav-links a.portfolio-link:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

/* Sections */
section {
    padding: 8rem 0;
    border-top: 1px solid #000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-count {
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Footer */
footer {
    padding: 6rem 0 4rem;
    border-top: 1px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.5;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.5;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    nav {
        position: static;
        padding: 2rem 0;
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
