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

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f8f5;
    color: #111611;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.navbar {
    width: 100%;
    height: 92px;

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

    padding: 0 42px;

    background: #f8f8f5;
    border-bottom: 1px solid #d8dbd5;
}

.name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.links a:hover {
    color: #173d20;
}

.links a:not(.contact):hover {
    transform: translateY(-1px);
}

.links .contact {
    padding: 12px 20px;

    border: 1px solid #173d20;

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

    background: transparent;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.links .contact:hover {
    background: #173d20;
    color: white;
}

.hero {
    min-height: calc(100vh - 92px);

    display: grid;
    grid-template-columns: 40% 60%;

    padding: 72px 42px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-right: 70px;
}

.eyebrow {
    margin-bottom: 30px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: #696f67;
}

.hero h1 {
    font-size: clamp(54px, 5.8vw, 94px);
    line-height: 0.92;
    letter-spacing: -5px;
    font-weight: 700;

    color: #102515;
}

.intro {
    max-width: 440px;

    margin-top: 34px;

    font-size: 18px;
    line-height: 1.55;

    color: #575e56;
}

.hero-actions {
    margin-top: 42px;

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

.primary-button {
    padding: 15px 24px;

    background: #173d20;
    color: white;

    border: 1px solid #173d20;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.primary-button:hover {
    background: transparent;
    color: #173d20;
}

.text-link {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 14px;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

.hero-right {
    min-height: 640px;
}

.feature-card {
    height: 100%;
    min-height: 640px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 36px;

    background: #102515;
    color: white;
}

.card-number {
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

.card-content {
    max-width: 650px;
}

.card-label {
    margin-bottom: 22px;

    font-size: 12px;
    letter-spacing: 1.7px;
    text-transform: uppercase;

    opacity: 0.65;
}

.card-content h2 {
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 500;
}

.card-description {
    max-width: 420px;

    margin-top: 30px;

    font-size: 15px;
    line-height: 1.6;

    color: #cbd3cb;
}

.work {
    padding: 110px 42px;
}

.section-heading {
    display: flex;
    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #1c211c;

    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.project {
    min-height: 145px;

    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;

    border-bottom: 1px solid #c9ccc6;

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}

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

    background: #eef0e9;
}

.project-number {
    font-size: 12px;
    color: #737970;
}

.project-title h3 {
    margin-bottom: 7px;

    font-size: 30px;
    font-weight: 500;
    letter-spacing: -1px;
}

.project-title p {
    font-size: 13px;
    line-height: 1.5;

    color: #737970;
}

.project-arrow {
    justify-self: end;

    font-size: 24px;

    transition: transform 0.2s ease;
}

.project:hover .project-arrow {
    transform: translate(4px, -4px);
}

.about {
    display: grid;
    grid-template-columns: 30% 70%;

    padding: 110px 42px 150px;

    border-top: 1px solid #d1d4ce;
}

.section-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #686e66;
}

.about-text {
    max-width: 850px;

    font-size: clamp(36px, 4vw, 62px);
    line-height: 1.08;
    letter-spacing: -2.7px;
}

footer {
    min-height: 210px;

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

    padding: 42px;

    background: #102515;
    color: white;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 7px;

    font-size: 13px;
}

.footer-left p:last-child {
    color: #aeb8ae;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 13px;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.55;
}

@media (max-width: 950px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-left {
        min-height: 520px;
        padding-right: 0;
    }

    .hero-right,
    .feature-card {
        min-height: 520px;
    }
}

@media (max-width: 700px) {
    .navbar {
        height: auto;

        padding: 20px 18px;

        flex-direction: row;
        align-items: center;

        gap: 15px;
    }

    .name {
        font-size: 14px;
    }

    .links {
        gap: 16px;
    }

    .links a {
        font-size: 17px;
    }

    .links .contact {
        padding: 9px 12px;

        font-size: 12px;
    }

    .hero {
        min-height: auto;

        display: block;

        padding: 70px 18px 18px;
    }

    .hero-left {
        min-height: auto;

        padding: 0;
        margin-bottom: 70px;
    }

    .eyebrow {
        margin-bottom: 24px;

        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(49px, 14vw, 68px);
        letter-spacing: -3.5px;
    }

    .intro {
        max-width: 330px;

        margin-top: 27px;

        font-size: 15px;
    }

    .hero-actions {
        margin-top: 32px;
        gap: 22px;
    }

    .primary-button {
        padding: 13px 18px;

        font-size: 13px;
    }

    .text-link {
        font-size: 13px;
    }

    .hero-right,
    .feature-card {
        min-height: 470px;
    }

    .feature-card {
        padding: 24px;
    }

    .card-content h2 {
        font-size: clamp(45px, 13vw, 65px);
        letter-spacing: -3px;
    }

    .card-description {
        font-size: 14px;
    }

    .work {
        padding: 90px 18px;
    }

    .project {
        min-height: 125px;

        grid-template-columns: 45px 1fr 30px;
    }

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

    .project-title p {
        max-width: 220px;

        font-size: 11px;
    }

    .project-arrow {
        font-size: 19px;
    }

    .about {
        display: block;

        padding: 85px 18px 110px;
    }

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

    .about-text {
        font-size: 36px;
        letter-spacing: -2px;
    }

    footer {
        min-height: 250px;

        padding: 30px 18px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-links {
        width: 100%;

        justify-content: space-between;

        gap: 15px;
    }
}

@media (max-width: 420px) {
    .navbar {
        padding: 18px 15px;
    }

    .name {
        font-size: 13px;
    }

    .links {
        gap: 13px;
    }

    .links a {
        font-size: 16px;
    }

    .links .contact {
        padding: 8px 10px;

        font-size: 11px;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 13vw;
        letter-spacing: -2.7px;
    }

    .work,
    .about {
        padding-left: 15px;
        padding-right: 15px;
    }

    footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}