@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');


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


html {
    scroll-behavior: smooth;
}


body {
    background: #080808;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    padding: 28px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;

    mix-blend-mode: difference;
}


.logo {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
}


.navigation {
    display: flex;
    gap: 32px;
}


.navigation a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;

    opacity: 0.65;

    transition: opacity 0.3s ease;
}


.navigation a:hover {
    opacity: 1;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.hero-content {
    position: relative;

    z-index: 3;

    width: 55%;

    padding-left: 9vw;
}


.hero-label {
    margin-bottom: 25px;

    font-size: 11px;
    letter-spacing: 0.25em;

    color: rgba(255,255,255,0.55);
}


.hero h1 {
    font-size: clamp(80px, 13vw, 210px);

    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -0.07em;

    margin-left: -8px;
}


.hero-description {
    margin-top: 40px;

    max-width: 300px;

    font-size: 15px;

    line-height: 1.6;

    color: rgba(255,255,255,0.65);
}


.hero-button {
    display: inline-flex;

    align-items: center;
    gap: 25px;

    margin-top: 40px;

    padding: 14px 20px;

    border: 1px solid rgba(255,255,255,0.3);

    border-radius: 100px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.hero-button span {
    font-size: 16px;
}


.hero-button:hover {
    background: #fff;

    color: #000;

    transform: translateY(-3px);
}


/* =========================
   IMAGE
========================= */

.hero-image {
    position: absolute;

    right: 5vw;
    top: 10vh;

    width: 48vw;
    height: 80vh;

    overflow: hidden;

    border-radius: 4px;
}


.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(100%)
        contrast(1.05)
        brightness(0.75);

    transform: scale(1.03);

    transition: transform 1.2s ease;
}


.hero:hover .hero-image img {
    transform: scale(1.07);
}


.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #080808 0%,
            rgba(8,8,8,0.8) 28%,
            rgba(8,8,8,0.15) 65%,
            rgba(8,8,8,0.45) 100%
        );
}


/* =========================
   SECTIONS
========================= */

.section {
    min-height: 80vh;

    padding: 150px 9vw;

    display: grid;

    grid-template-columns: 120px 1fr;

    border-top: 1px solid rgba(255,255,255,0.1);
}


.section-number {
    font-size: 11px;

    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.4);
}


.section-content {
    max-width: 800px;
}


.section h2 {
    font-size: clamp(50px, 8vw, 120px);

    font-weight: 400;

    letter-spacing: -0.06em;

    margin-bottom: 50px;
}


.section p {
    max-width: 500px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,0.55);
}


/* =========================
   PROJECT
========================= */

.project-placeholder {
    margin-top: 80px;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.6);
}


/* =========================
   CONTACT
========================= */

.contact-links {
    margin-top: 70px;

    display: flex;

    flex-direction: column;
}


.contact-links a {
    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,0.15);

    display: flex;

    justify-content: space-between;

    font-size: 20px;

    transition: padding 0.3s ease;
}


.contact-links a:hover {
    padding-left: 15px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 30px 50px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,0.1);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.35);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .header {
        padding: 22px 20px;
    }


    .navigation {
        gap: 16px;
    }


    .navigation a {
        font-size: 9px;
    }


    .hero {
        min-height: 100svh;

        align-items: flex-end;

        padding-bottom: 70px;
    }


    .hero-content {
        width: 100%;

        padding: 0 25px;
    }


    .hero h1 {
        font-size: 20vw;
    }


    .hero-description {
        margin-top: 25px;
    }


    .hero-image {
        position: absolute;

        top: 0;
        right: 0;

        width: 100%;
        height: 100%;

        opacity: 0.6;

        border-radius: 0;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8,8,8,0.25) 0%,
                rgba(8,8,8,0.25) 35%,
                #080808 85%
            );
    }


    .section {
        min-height: auto;

        padding: 100px 25px;

        display: block;
    }


    .section-number {
        margin-bottom: 40px;
    }


    .section h2 {
        font-size: 65px;

        margin-bottom: 35px;
    }


    .section p {
        font-size: 15px;
    }


    .footer {
        padding: 25px 20px;
    }

}
