:root {
    --black: #000;
    --white: #fff;
    --beige: #d4c5b0;
    --gray: #666;
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
}

.page-wrapper {
    max-width: 1800px;
    margin: 0 auto;
}

/* Hero Section with asymmetric layout */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: relative;
}

/* Left side - Text */
.hero-left {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.meta-info {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(4rem, 9vw, 10rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.name-first {
    display: block;
    color: var(--beige);
}

.name-last {
    display: block;
    font-weight: 400;
}

.role-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.bio-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

/* Right side - Photo */
.hero-right {
    position: relative;
    overflow: hidden;
}

.photo-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 70%;
    transform: translateY(-50%);
    opacity: 0;
    animation: slideInRight 1s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.3);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-container:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

/* Projects Section */
.projects-section {
    padding: 8rem 5rem;
    border-top: 1px solid rgba(212, 197, 176, 0.2);
}

.section-header {
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--beige);
    font-weight: 300;
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.project-card {
    border: 1px solid rgba(212, 197, 176, 0.2);
    padding: 4rem 3rem;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(212, 197, 176, 0.05);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover::before {
    width: 100%;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--beige);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--beige);
    opacity: 0.5;
    line-height: 1;
}

.card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
}

.card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.card-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.project-card:hover .card-arrow {
    background: var(--beige);
    color: var(--black);
    transform: translateX(10px);
}

/* Footer */
footer {
    padding: 5rem;
    border-top: 1px solid rgba(212, 197, 176, 0.2);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.footer-col h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    color: var(--beige);
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: var(--beige);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 60vh;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-left {
        padding: 4rem 2rem;
    }

    .projects-section {
        padding: 4rem 2rem;
    }

    .project-card {
        padding: 3rem 2rem;
    }

    footer {
        padding: 3rem 2rem;
    }
}
