:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #c5a059;
    --gray: #2a2a2a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    margin: 0;
    overflow-x: hidden;
}

header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 5rem;
    width: 60%;
    height: 80vh;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(0.5);
    transition: 1s ease;
}

.hero-img:hover {
    filter: grayscale(0); transform: scale(1.02);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 3rem;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav a { color: white; text-decoration: none; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; }

.section { padding: 100px 10%; border-top: 1px solid var(--gray); }

.project-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.project-item { grid-column: span 6; position: relative; overflow: hidden; height: 400px; }
.project-item:nth-child(even) { margin-top: 100px; }

.project-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.project-item:hover img { transform: scale(1.1); }

/* Subpage transitions */
.fade-in { animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

footer { padding: 60px 10%; background: #000; text-align: center; color: #444; }
