@font-face {
    font-family: 'PPValve';
    src: url('assets/fonts/PPValve-PlainMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

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

body {
    background: #101010;
    color: #fff;
    min-height: 100vh;
    padding: 0;
    font-family: 'Geist', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: #101010;
    z-index: 100;
    display: flex;
    align-items: center;
}

nav::after {
    content: '';
    position: absolute;
    left: calc(40px + 40px + 40px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

nav img {
    height: 40px;
    width: auto;
    padding-right: 20px;
    margin-right: 20px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    margin-left: 0;
    align-self: stretch;
    margin-top: -20px;
    margin-bottom: -20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 0.02em;
    opacity: 0.75;
    transition: opacity 0.15s ease;
    padding: 0 24px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-links a.active {
    opacity: 1;
}

main {
    flex: 1;
    padding: 100px 40px 80px 40px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: #101010;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 100;
    z-index: 100;
}

h1 {
    font-family: 'PPValve', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: normal;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    text-align: right;
    padding-right: 60px;
    position: relative;
    z-index: 10;
}

.content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    position: relative;
}

.text-column {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 100;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
}

.text-column p {
    margin-bottom: 1.5em;
}

.text-column p:last-child {
    margin-bottom: 0;
}

.contact {
    margin-top: 1.5em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 18px;
    font-size: 15px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.contact-label {
    opacity: 0.6;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scrambled-email {
    color: #fff;
    text-decoration: none;
    font-family: 'Geist', sans-serif;
    cursor: pointer;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}

.scrambled-email:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.image-column {
    position: fixed;
    top: 100px;
    left: 10px;
    width: calc(66.67vw - 0px);
    max-width: 933px;
    height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.8;
}

@media (max-width: 900px) {
    main {
        padding: 100px 20px 80px 20px;
    }

    nav, footer {
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 13px;
        flex-wrap: wrap;
        align-self: auto;
    }

    .nav-links a {
        padding: 8px 12px;
    }

    h1 {
        margin-bottom: 60px;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-column {
        left: 10px;
        width: calc(66.67vw - 10px);
    }
}
