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

:root {
    --black: #0a0a0a;
    --white: #fafafa;
    --gray: #6b6b6b;
    --accent: #ff2d2d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-line {
    position: absolute;
    bottom: 8rem;
    right: 4rem;
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 8rem 4rem;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 6rem;
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.05em;
}

/* Work */
.work-grid {
    display: grid;
    gap: 0;
}

.work-item {
    padding: 3rem 0;
    border-top: 1px solid #1a1a1a;
    transition: all 0.4s ease;
    cursor: pointer;
}

.work-item:hover {
    padding-left: 2rem;
    background: linear-gradient(to right, #111, transparent);
}

.work-item:hover .work-title {
    color: var(--accent);
}

.work-year {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.work-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.work-desc {
    max-width: 500px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* About */
.about-content {
    max-width: 700px;
}

.about-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-text:last-child {
    color: var(--gray);
}

/* Contact */
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
}

.contact-email {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 5rem);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.contact-email:hover {
    color: var(--accent);
}

.contact-email:hover::after {
    width: 100%;
}

.contact-divider {
    width: 60px;
    height: 1px;
    background: var(--gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

.social-sep {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    padding: 2rem 4rem;
    border-top: 1px solid #1a1a1a;
}

.footer p {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero,
    .section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-line {
        display: none;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--white);
}
