* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #121a20;
    background: #f7f8f8;
}

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

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

.header {
    height: 82px;
    background: #fff;

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

    padding: 0 7vw;

    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;

    border-bottom: 1px solid #e8ebec;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 15px;
    letter-spacing: 1px;
}

.logo span {
    width: 39px;
    height: 39px;

    border-radius: 4px;

    background: #e45b27;
    color: #fff;

    display: grid;
    place-items: center;

    font-weight: 800;
}

.logo small {
    font-size: 8px;
    color: #879096;

    align-self: flex-end;
    margin-bottom: 7px;
}

.header nav {
    display: flex;
    align-items: center;
    gap: 30px;

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

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.header nav a {
    transition: 0.2s;
}

.header nav a:hover {
    color: #e45b27;
}

.nav-cta {
    padding: 13px 17px;
    border: 1px solid #d9dfe1;
}

.menu-btn {
    display: none;

    background: none;
    border: 0;

    font-size: 27px;
}

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

.hero {
    height: 850px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #101a20;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #091217f2 0%,
            #091217c9 42%,
            #09121735
        ),
        url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=2200&q=85")
        center / cover;

    filter: saturate(0.75);
}

.hero-content {
    position: relative;

    margin-left: 10vw;

    max-width: 800px;
}

.label,
.eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 800;
}

.label {
    color: #f47743;
}

.hero h1 {
    font-size: clamp(56px, 7.8vw, 110px);

    line-height: 0.92;

    letter-spacing: -5px;

    margin: 25px 0;
}

.hero h1 span {
    color: #f47743;
    font-weight: 400;
}

.hero-text {
    max-width: 610px;

    color: #c8d2d6;

    line-height: 1.8;

    font-size: 16px;
}

.actions {
    display: flex;
    gap: 20px;
    align-items: center;

    margin-top: 35px;
}

.btn {
    display: inline-block;

    border: 0;

    background: #e45b27;
    color: #fff;

    padding: 16px 24px;

    font: 700 11px Inter;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s;
}

.btn:hover {
    background: #c94b1d;

    transform: translateY(-2px);
}

.ghost {
    font-size: 11px;
    font-weight: 800;
}

.hero-side {
    position: absolute;

    right: 7vw;
    bottom: 60px;

    display: flex;
    gap: 10px;

    align-items: baseline;

    color: #fff;
}

.hero-side b {
    font-size: 11px;
    letter-spacing: 2px;
}

.hero-side span {
    font-size: 28px;
    font-weight: 800;
}

.hero-side small {
    color: #aeb9bd;
}

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

.section {
    padding: 120px 10vw;
}

.eyebrow {
    color: #e45b27;

    margin-bottom: 35px;
}

/* =========================
   ABOUT
========================= */

.about {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;

    background: #fff;
}

.about h2,
.section h2 {
    font-size: clamp(44px, 5.4vw, 76px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin: 0 0 30px;
}

.about h2 em {
    font-style: normal;

    color: #e45b27;

    font-weight: 400;
}

.about .big {
    font-size: 21px;

    line-height: 1.65;

    max-width: 900px;
}

.about p:not(.big) {
    color: #68757a;

    line-height: 1.85;

    max-width: 800px;
}

.underlink {
    display: inline-block;

    color: #e45b27;

    font-size: 11px;

    font-weight: 800;

    margin-top: 25px;
}

/* =========================
   SERVICES
========================= */

.services {
    background: #eef1f2;
}

.title-row {
    display: flex;

    justify-content: space-between;

    gap: 50px;

    align-items: end;
}

.title-row h2 span,
.projects h2 span,
.why h2 span {
    color: #e45b27;

    font-weight: 400;
}

.title-row p {
    max-width: 400px;

    color: #6d797e;

    line-height: 1.7;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    margin-top: 55px;

    background: #dfe4e6;
}

.cards article {
    background: #fff;

    min-height: 300px;

    padding: 34px;

    position: relative;

    transition: 0.3s;
}

.cards article:hover {
    transform: translateY(-6px);

    z-index: 2;

    box-shadow: 0 20px 45px #12242c14;
}

.cards i {
    font-style: normal;

    font-size: 10px;

    color: #e45b27;

    font-weight: 800;
}

.cards h3 {
    font-size: 24px;

    line-height: 1.15;

    margin: 45px 0 18px;
}

.cards p {
    font-size: 13px;

    color: #6b777b;

    line-height: 1.7;
}

.cards a {
    position: absolute;

    bottom: 30px;

    font-size: 10px;

    font-weight: 800;

    color: #e45b27;
}

.cards .accent {
    background: #e45b27;

    color: #fff;
}

.cards .accent i,
.cards .accent a {
    color: #fff;
}

.cards .accent p {
    color: #ffe1d3;
}

/* =========================
   STATEMENT
========================= */

.statement {
    min-height: 440px;

    background: #16242b;

    color: #fff;

    display: grid;

    grid-template-columns: 1fr 3fr;

    align-items: center;

    padding: 80px 10vw;
}

.statement-number {
    font-size: 150px;

    font-weight: 800;

    color: #25353d;
}

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

    line-height: 0.95;

    letter-spacing: -4px;
}

.statement h2 span {
    color: #e45b27;

    font-weight: 400;
}

/* =========================
   PROJECTS
========================= */

.projects {
    background: #fff;
}

.project-grid {
    display: grid;

    grid-template-columns: 2fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 12px;

    margin-top: 50px;
}

.project {
    background: linear-gradient(
        135deg,
        #27363d,
        #52636a
    );

    color: #fff;

    position: relative;

    overflow: hidden;
}

.project::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        0deg,
        #071116cc,
        transparent 70%
    );
}

.project.large {
    grid-row: span 2;

    background: linear-gradient(
        135deg,
        #0d2029,
        #53666d
    );
}

.project > div {
    position: absolute;

    z-index: 2;

    left: 30px;
    right: 30px;
    bottom: 28px;
}

.project small {
    color: #f47743;

    font-weight: 800;

    letter-spacing: 2px;
}

.project h3 {
    font-size: 25px;

    margin: 8px 0;
}

.project p {
    margin: 0;

    color: #c8d2d6;

    font-size: 12px;
}

/* =========================
   NUMBERS
========================= */

.numbers {
    background: #e45b27;

    color: #fff;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding: 65px 10vw;
}

.numbers div {
    border-left: 1px solid #ffffff55;

    padding-left: 30px;
}

.numbers strong {
    font-size: 35px;

    display: block;
}

.numbers span {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #ffd8c7;
}

/* =========================
   WHY US
========================= */

.why {
    background: #fff;
}

.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.features {
    display: grid;

    gap: 0;
}

.features div {
    border-top: 1px solid #d9dfe1;

    padding: 25px 0;

    display: grid;

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

.features b {
    color: #e45b27;

    font-size: 11px;
}

.features h3 {
    margin: 0 0 8px;

    font-size: 17px;
}

.features p {
    grid-column: 2;

    margin: 0;

    color: #748085;

    font-size: 13px;

    line-height: 1.7;
}

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

.contact {
    background: #0b171d;

    color: #fff;
}

.contact .section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.eyebrow.light {
    color: #f47743;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.contact h2 {
    font-size: clamp(55px, 6vw, 85px);
}

.contact h2 span {
    color: #f47743;

    font-weight: 400;
}

.contact-grid > div > p {
    color: #aebbc0;

    max-width: 520px;

    line-height: 1.8;
}

.details {
    display: flex;

    gap: 55px;

    margin-top: 55px;
}

.details p {
    font-size: 13px;

    line-height: 1.7;
}

.details small {
    display: block;

    color: #f47743;

    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

/* =========================
   FORM
========================= */

form {
    display: grid;

    gap: 20px;
}

label {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #aebbc0;
}

input,
textarea {
    width: 100%;

    display: block;

    margin-top: 8px;

    background: transparent;

    border: 0;

    border-bottom: 1px solid #415158;

    color: #fff;

    padding: 14px 0;

    font: 14px Inter;

    outline: 0;

    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #f47743;
}

.form-msg {
    font-size: 12px;

    color: #f47743;
}

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

footer {
    background: #071116;

    color: #fff;

    padding: 35px 7vw;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 10px;
}

footer p {
    color: #7f9097;
}

footer > a:last-child {
    color: #f47743;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .header nav {
        display: none;

        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        background: #fff;

        padding: 30px 8vw;

        flex-direction: column;

        align-items: flex-start;
    }

    .header nav.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero-content {
        margin: 0 7vw;
    }

    .about,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .statement-number {
        font-size: 90px;
    }

    .numbers {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

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

    .project.large {
        grid-row: span 2;
    }

    .details {
        flex-wrap: wrap;
    }
}

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

@media (max-width: 600px) {

    .hero {
        height: 760px;
    }

    .hero h1 {
        font-size: 56px;

        letter-spacing: -3px;
    }

    .hero-side {
        right: 7vw;
    }

    .section {
        padding: 80px 7vw;
    }

    .title-row {
        display: block;
    }

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

    .project-grid {
        display: block;
    }

    .project {
        height: 280px;

        margin-bottom: 12px;
    }

    .numbers {
        padding: 55px 7vw;
    }

    .contact .section {
        padding: 80px 7vw;
    }

    .details {
        display: block;
    }

    .details p {
        margin: 20px 0;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }
}