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


:root {
    --black: #0b0b0b;
    --dark: #111111;
    --orange: #ff5a1f;
    --white: #f5f5f3;
    --gray: #999999;
    --line: #292929;
}


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


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}


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


/* -------------------------
   NAVBAR
------------------------- */

.navbar {
    width: 100%;
    max-width: 1400px;
    margin: auto;

    padding: 32px 6vw;

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


.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}


.logo span {
    color: var(--orange);
}


nav {
    display: flex;
    gap: 35px;
}


nav a {
    color: var(--gray);
    font-size: 14px;
    transition: 0.25s ease;
}


nav a:hover {
    color: var(--white);
}


/* -------------------------
   HERO
------------------------- */

.hero {
    min-height: 85vh;

    max-width: 1400px;
    margin: auto;

    padding: 120px 6vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.eyebrow {
    color: var(--orange);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 30px;
}


.hero h1 {
    font-size: clamp(70px, 11vw, 170px);

    line-height: 0.9;

    letter-spacing: -8px;

    font-weight: 800;

    max-width: 1000px;
}


.hero h1 span {
    color: var(--orange);
}


.hero-description {
    color: var(--gray);

    max-width: 480px;

    font-size: 18px;

    margin-top: 45px;
}


.button {
    width: fit-content;

    margin-top: 40px;

    padding: 16px 22px;

    background: var(--orange);

    color: var(--black);

    font-size: 14px;
    font-weight: 700;

    display: flex;
    gap: 30px;
    align-items: center;

    transition: 0.25s ease;
}


.button:hover {
    background: var(--white);

    transform: translateY(-3px);
}


/* -------------------------
   SECTIONS
------------------------- */

.about,
.projects {
    max-width: 1400px;

    margin: auto;

    padding: 140px 6vw;

    border-top: 1px solid var(--line);

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 80px;
}


.section-label {
    color: var(--gray);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.section-label span {
    color: var(--orange);

    margin-right: 20px;
}


/* -------------------------
   ABOUT
------------------------- */

.about-content {
    max-width: 750px;
}


.about h2 {
    font-size: clamp(45px, 6vw, 85px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 50px;
}


.about h2 span {
    color: var(--orange);
}


.about-content p {
    color: var(--gray);

    max-width: 600px;

    margin-bottom: 20px;

    font-size: 17px;
}


/* -------------------------
   PROJECTS
------------------------- */

.project-list {
    border-top: 1px solid var(--line);
}


.project {
    min-height: 200px;

    border-bottom: 1px solid var(--line);

    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    transition: 0.3s ease;
}


.project:hover {
    padding-left: 15px;
}


.project-number {
    color: var(--orange);

    font-size: 13px;
}


.project-info h3 {
    font-size: 30px;

    letter-spacing: -1px;

    margin-bottom: 5px;
}


.project-info p {
    color: var(--gray);

    font-size: 14px;

    margin-bottom: 15px;
}


.tags {
    display: flex;
    gap: 8px;
}


.tags span {
    border: 1px solid var(--line);

    padding: 5px 10px;

    color: var(--gray);

    font-size: 11px;

    text-transform: uppercase;
}


.project-link {
    width: 42px;
    height: 42px;

    border: 1px solid var(--line);

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

    color: var(--orange);

    transition: 0.25s ease;
}


.project-link:hover {
    background: var(--orange);

    color: var(--black);
}


/* -------------------------
   CONTACT
------------------------- */

.contact {
    max-width: 1400px;

    margin: auto;

    padding: 180px 6vw;

    border-top: 1px solid var(--line);
}


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

    line-height: 0.95;

    letter-spacing: -6px;

    max-width: 1000px;
}


.contact h2 span {
    display: block;

    color: var(--orange);
}


.contact-link {
    display: inline-block;

    margin-top: 60px;

    font-size: 18px;

    border-bottom: 1px solid var(--orange);

    padding-bottom: 5px;
}


/* -------------------------
   FOOTER
------------------------- */

footer {
    max-width: 1400px;

    margin: auto;

    padding: 35px 6vw;

    border-top: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    color: var(--gray);

    font-size: 13px;
}


footer div {
    display: flex;

    gap: 25px;
}


footer a:hover {
    color: var(--orange);
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 700px) {

    .navbar {
        padding: 25px;
    }


    nav {
        gap: 15px;
    }


    nav a {
        font-size: 12px;
    }


    .hero {
        min-height: 80vh;

        padding: 80px 25px;
    }


    .hero h1 {
        font-size: 70px;

        letter-spacing: -5px;
    }


    .hero-description {
        font-size: 16px;
    }


    .about,
    .projects {
        padding: 90px 25px;

        display: block;
    }


    .section-label {
        margin-bottom: 60px;
    }


    .about h2 {
        letter-spacing: -3px;
    }


    .project {
        grid-template-columns: 40px 1fr 35px;

        min-height: 180px;
    }


    .project-info h3 {
        font-size: 22px;
    }


    .tags {
        flex-wrap: wrap;
    }


    .contact {
        padding: 120px 25px;
    }


    .contact h2 {
        letter-spacing: -4px;
    }


    footer {
        padding: 30px 25px;

        flex-direction: column;

        gap: 20px;
    }

}


.support {
    padding: 120px 8%;
    border-top: 1px solid #222;
}

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

.support-content h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin-bottom: 30px;
}

.support-content h2 span {
    color: #ff6a00;
}

.support-content p {
    max-width: 550px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 50px;
}

.support-list {
    border-top: 1px solid #333;
}

.support-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 0;

    color: #fff;
    text-decoration: none;

    border-bottom: 1px solid #333;

    transition: 0.2s ease;
}

.support-link:hover {
    color: #ff6a00;
    padding-left: 10px;
}

.support-link span:last-child {
    font-size: 1.3rem;
}