/* =========================================
   JOURNEY TIMELINE SECTION
   ========================================= */

.journey-timeline {
    background: #1A0A3C;
    padding: 80px 32px;
    width: 100%;
}

.journey-inner {
    max-width: 900px;
    margin: 0 auto;
}

.journey-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.15;
}

.journey-sub {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #F5C518;
    text-align: center;
    margin-bottom: 70px;
    line-height: 1.5;
}

/* ===== STAGES CONTAINER ===== */
.journey-stages {
    position: relative;
}

/* Vertical gold line — centre of section */
.journey-stages::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(245, 197, 24, 0.3);
    z-index: 0;
}

/* ===== INDIVIDUAL STAGE ===== */
.journey-stage {
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

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

/* ===== NUMBER BADGE ===== */
.journey-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F5C518;
    color: #1A0A3C;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    line-height: 1;
    flex-shrink: 0;
}

/* ===== CONTENT BLOCKS ===== */
.journey-content {
    padding: 0 28px;
}

.journey-stage--left .journey-content {
    text-align: right;
}

.journey-stage--right .journey-content {
    text-align: left;
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.journey-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #C8B8E8;
    margin: 0;
}

/* ===== SCROLL REVEAL ===== */
.journey-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .journey-timeline {
        padding: 50px 20px;
    }

    .journey-heading {
        font-size: 28px;
    }

    .journey-sub {
        font-size: 17px;
        margin-bottom: 50px;
    }

    /* Line on left, 25px in (centre of 52px badge column) */
    .journey-stages::before {
        left: 25px;
        transform: none;
    }

    /* Single column: badge | content */
    .journey-stage {
        grid-template-columns: 52px 1fr;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    /* Badge always in column 1 regardless of DOM order */
    .journey-stage--left .journey-badge,
    .journey-stage--right .journey-badge {
        grid-column: 1;
        grid-row: 1;
    }

    /* Content always in column 2, text left */
    .journey-stage--left .journey-content,
    .journey-stage--right .journey-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding: 12px 0 0 20px;
    }

    /* Spacer not needed on mobile */
    .journey-spacer {
        display: none;
    }

    .journey-title {
        font-size: 19px;
    }
}
