@font-face {
    font-family: "Space Grotesk";
    src: url("./assets/space-grotesk-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("./assets/space-grotesk-latin-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f6f4ef;
    color: #242a27;
    font-family: "Space Grotesk", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #ee5c19;
    color: white;
}

.page {
    width: min(1440px, 100%);
    margin-inline: auto;
    padding: 0 56px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 112px;
    border-bottom: 1px solid #deded5;
}

.logo {
    width: 166px;
    height: auto;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid #deded5;
    border-radius: 100px;
    font-size: 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bb4611;
}

.intro {
    padding: 66px 0 48px;
    text-align: center;
    animation: arrive 800ms ease-out both;
}

.eyebrow {
    margin: 0 0 23px;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 600;
    line-height: 1.01;
    letter-spacing: -0.065em;
}

h1 span {
    color: #bd4712;
}

.description {
    margin: 27px auto 0;
    color: #62665f;
    font-size: 16px;
    line-height: 1.75;
}

.arrival {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    font-size: 12px;
}

.arrival-line {
    width: 24px;
    height: 1px;
    background: #bd4712;
}

.journey {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #475852;
    aspect-ratio: 2.95;
    animation: arrive 1100ms ease-out both;
}

.journey::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgb(9 24 22 / 65%));
    content: "";
}

.journey-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 76%;
}

figcaption {
    position: absolute;
    z-index: 1;
    inset: auto 32px 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.figure-arrow {
    font-size: 38px;
    font-weight: 400;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 25px 0;
    color: #62665f;
    font-size: 11px;
}

.footer p {
    margin: 0;
}

.footer-symbol {
    color: #bd4712;
    font-size: 25px;
}

@keyframes arrive {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1600px) {
    .intro {
        padding-block: 80px 60px;
    }
}

@media (max-width: 768px) {
    .page {
        padding-inline: 24px;
    }

    .header {
        min-height: 88px;
    }

    .intro {
        padding-block: 55px 38px;
    }

    .journey {
        aspect-ratio: 1.65;
    }
}

@media (max-width: 480px) {
    .page {
        padding-inline: 20px;
    }

    .logo {
        width: 135px;
    }

    .status {
        padding: 7px 9px;
        font-size: 10px;
    }

    .intro {
        padding-top: 44px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    h1 {
        font-size: clamp(45px, 12.5vw, 60px);
    }

    .description {
        max-width: 320px;
        font-size: 14px;
    }

    .desktop-break {
        display: none;
    }

    .journey {
        aspect-ratio: 1.12;
    }

    figcaption {
        inset: auto 20px 20px;
        font-size: 20px;
    }

    .footer {
        flex-wrap: wrap;
        gap: 8px 16px;
        padding-block: 22px;
        font-size: 10px;
    }

    .footer p:nth-child(2) {
        order: 3;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro,
    .journey {
        animation: none;
    }
}
