:root {
    --bg-color: #f7f7f5;
    --text-color: #1a1a1a;
    --gray-light: #8c8c8c;
    --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5vw;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo { font-size: 1rem; letter-spacing: 5px; font-weight: 300; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
}
.container { padding: 0 5vw; }
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
#hero-background {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero p { font-size: 1.2rem; font-weight: 300; color: rgba(255,255,255,0.8); }
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.project-card.wide { grid-column: span 2; }
.img-container {
    width: 100%;
    overflow: hidden;
    background-color: #e5e5e3;
    aspect-ratio: 4 / 5;
}
.wide .img-container { aspect-ratio: 16 / 9; }
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.project-card:hover img { transform: scale(1.03); }
.project-info { margin-top: 20px; }
.category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
}
.title { font-size: 1.2rem; font-weight: 300; margin-top: 10px; }
footer {
    padding: 60px 5vw 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-light);
}
.fade-in { opacity: 0; transform: translateY(20px); }
@media (max-width: 768px) {
    .work-grid { grid-template-columns: 1fr; gap: 40px; }
    .project-card.wide { grid-column: span 1; }
    .nav-links { display: none; }
    .hero { background-attachment: scroll; }
}