.journey-hero {
    position: relative;
    min-height: calc(100svh - 5.5rem);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--souvelty-plum);
}

.journey-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(32, 12, 25, 0.9) 0%,
        rgba(32, 12, 25, 0.76) 38%,
        rgba(32, 12, 25, 0.3) 70%,
        rgba(32, 12, 25, 0.12) 100%
    );
    pointer-events: none;
}

.journey-hero__media,
.journey-hero__media .responsive-image,
.journey-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.journey-hero__image {
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: none;
}

.journey-hero__content {
    position: relative;
    z-index: 2;
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.journey-hero__copy {
    max-width: 52rem;
}

.journey-hero h1 {
    max-width: 16ch;
    margin-bottom: 1.75rem;
    font-size: clamp(3rem, 4.6vw, 5.1rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.journey-hero__copy > p {
    max-width: 45rem;
    margin: 0;
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    line-height: 1.7;
}

.journey-hero__copy > .journey-hero__statement {
    margin-top: 1.2rem;
}

.journey-intro {
    padding-block: clamp(4rem, 7vw, 6rem);
}

.journey-intro__content {
    max-width: 52rem;
}

.journey-intro h2 {
    max-width: none;
    margin-bottom: 1.25rem;
    font-size: clamp(2.35rem, 3.8vw, 3.9rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.journey-intro p {
    max-width: 44rem;
    margin: 0;
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
}

.journey-list {
    background: var(--souvelty-aubergine);
}

.journey-list__inner {
    max-width: 76rem;
}

.journey-chapter {
    display: grid;
    grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
    padding-block: clamp(4.5rem, 7vw, 6.5rem);
    border-top: 1px solid rgba(215, 175, 118, 0.3);
}

.journey-chapter:first-child {
    border-top: 0;
}

.journey-chapter__duration {
    margin: 0 0 0.8rem;
    color: var(--souvelty-champagne-gold);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.journey-chapter__lead h2 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.45rem, 3.6vw, 3.8rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.journey-chapter__body {
    max-width: 48rem;
}

.journey-chapter__body h3 {
    max-width: 20ch;
    margin-bottom: 1.6rem;
    font-size: clamp(1.9rem, 2.7vw, 2.9rem);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.journey-chapter__body p {
    max-width: 46rem;
}

.journey-chapter__body p:first-of-type {
    margin-top: 0;
}

.journey-chapter__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .journey-chapter {
        grid-template-columns: minmax(10rem, 0.36fr) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 760px) {
    .journey-chapter {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-chapter__body h3 {
        max-width: 22ch;
    }
}

@media (max-width: 640px) {
    .journey-hero {
        min-height: calc(100svh - 5.5rem);
        align-items: end;
    }

    .journey-hero::after {
        background: linear-gradient(
            180deg,
            rgba(32, 12, 25, 0.12) 0%,
            rgba(32, 12, 25, 0.3) 42%,
            rgba(32, 12, 25, 0.9) 76%,
            rgba(32, 12, 25, 0.98) 100%
        );
    }

    .journey-hero__image {
        object-position: center top;
    }

    .journey-hero__content {
        padding-block: 3rem;
    }

    .journey-hero h1 {
        max-width: none;
        font-size: clamp(2.65rem, 10vw, 3.75rem);
    }

    .journey-hero__copy > p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .journey-intro {
        padding-block: 4rem;
    }

    .journey-intro h2 {
        font-size: clamp(2.2rem, 9.5vw, 3.15rem);
    }

    .journey-chapter {
        padding-block: 4rem;
    }

    .journey-chapter__lead h2 {
        font-size: clamp(2.35rem, 10vw, 3.35rem);
    }

    .journey-chapter__body h3 {
        max-width: none;
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }
}
