:root {
    --dark: #0a0c0c;
    --green: #112f3a;
    --orange: #df4b26;
    --stone: #e8e0d9;
    --light: #f6f4f3;
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: 'neue-haas-grotesk-text', 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--dark);
    color: var(--light);
}

p {
    font-weight: 300;
}

.coming-soon {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--green);
    background-image: linear-gradient(
        90deg,
        rgba(17, 47, 58, 0.98) 0%,
        rgba(17, 47, 58, 0.9) 42%,
        rgba(17, 47, 58, 0.72) 100%
    );
}

.header {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5vw;
}

.logo {
    display: block;
    width: min(240px, 65vw);
    height: auto;
}

.coming-label {
    color: rgba(246, 244, 243, 0.7);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-content: center;
    align-items: stretch;
    gap: clamp(40px, 6vw, 100px);
    padding: 30px 5vw 100px;
}

.hero-content {
    max-width: 850px;
}

.hero-media {
    position: relative;
    align-self: stretch;
    width: clamp(320px, 37vw, 560px);
    justify-self: end;
}

.hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--stone);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: var(--orange);
}

h1 {
    max-width: 820px;
    margin-bottom: 30px;
    font-size: clamp(48px, 6.2vw, 96px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.intro {
    max-width: 680px;
    margin-bottom: 26px;
    color: rgba(246, 244, 243, 0.82);
    font-size: clamp(18px, 1.6vw, 20px);
    line-height: 1.5;
}

.supporting-copy {
    max-width: 720px;
    margin-bottom: 36px;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
    color: rgba(246, 244, 243, 0.9);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.5;
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-bottom: 42px;
    color: var(--stone);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sectors span {
    position: relative;
}

.sectors span:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -17px;
    color: var(--orange);
}

.actions {
    width: 100%;
}

.project-button {
    --cut: 14px;
    --button-min-height: 70px;

    position: relative;
    display: flex;
    align-items: flex-end;
    width: min(100%, 300px);
    min-height: var(--button-min-height);
    padding: 14px 18px;
    background: var(--orange);
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    clip-path: polygon(
        var(--cut) 0,
        100% 0,
        100% calc(100% - var(--cut)),
        calc(100% - var(--cut)) 100%,
        0 100%,
        0 var(--cut)
    );
}

.project-button__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.project-button__arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 25px;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
    stroke-linecap: square;
    stroke-linejoin: miter;
    transition: transform 0.3s ease;
}

.project-button:hover .project-button__arrow {
    transform: translate(5px, -5px);
}

.project-button:focus-visible {
    outline: 3px solid var(--light);
    outline-offset: -8px;
}

.footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    padding: 28px 5vw 38px;
    border-top: 1px solid rgba(246, 244, 243, 0.14);
}

.capability {
    max-width: 500px;
    color: rgba(246, 244, 243, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.location {
    color: rgba(246, 244, 243, 0.7);
    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

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

    .hero-media {
        position: static;
        align-self: auto;
        width: min(100%, 520px);
        justify-self: center;
    }

    .hero-image {
        position: static;
        height: auto;
        max-height: 660px;
    }
}

@media (max-width: 760px) {
    .coming-soon {
        background-image: linear-gradient(
            rgba(17, 47, 58, 0.92),
            rgba(17, 47, 58, 0.96)
        );
    }

    .header {
        padding: 28px 24px;
    }

    .logo {
        width: min(240px, 65vw);
    }

    .coming-label {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 52px;
        align-items: start;
        padding: 30px 24px 70px;
    }

    .hero-media {
        width: min(100%, 430px);
        justify-self: center;
    }

    .hero-image {
        height: auto;
    }

    h1 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .intro {
        font-size: 17px;
    }

    .sectors {
        display: grid;
        gap: 8px;
    }

    .sectors span:not(:last-child)::after {
        display: none;
    }

    .project-button {
        --cut: 14px;
        --button-min-height: 70px;

        padding: 14px 18px;
    }

    .project-button__arrow {
        top: 12px;
        right: 12px;
        width: 25px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .location {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-button__arrow {
        transition: none;
    }
}
