/* ============================================
   SECTION: Journey — Our Approach
   Cream rounded card, two-column grid:
   left  = heading + quote card (Elizabeth)
   right = eyebrow + supporting statement
   Same styling family as the Our Approach Mission
   section. Mobile-first; stacks under 900px.
   ============================================ */

.journey-approach {
    padding: 40px var(--section-side-padding);
    background: var(--color-white);
}

.journey-approach__inner {
    position: relative;
    z-index: 0;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 80px;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 453px);
    justify-content: space-between;
    column-gap: 48px;
    row-gap: 64px;
}

/* Cream backing — shorter than the content so the quote card bleeds
   below it onto the white section. */
.journey-approach__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 120px);
    background: var(--color-accent-yellow-bg-soft);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.eyebrow--gold {
    color: var(--color-accent-yellow-label);
}

/* ----- Left column ----- */
.journey-approach__intro {
    grid-column: 1;
    grid-row: 1;
}

.journey-approach__heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: var(--font-weight-normal);
    line-height: 50px;
    color: #484336;
    margin: 0;
}

.journey-approach__heading .accent-script {
    color: var(--color-primary);
}

.journey-approach__quote {
    grid-column: 1;
    grid-row: 2;
}

/* ----- Right column (eyebrow + statement) ----- */
.journey-approach__aside {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journey-approach__statement {
    margin: 0;
    max-width: 453px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: var(--font-weight-normal);
    line-height: 44px;
    letter-spacing: -0.5px;
    color: var(--color-accent-yellow);   /* #e09b2b */
}

/* ----- Quote card ----- */
.quote-card-j {
    margin: 0;
    max-width: 400px;
    padding: 28px;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-surface-line-soft);
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.05);
    transform: rotate(-2deg);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-card-j__mark {
    display: inline-flex;
}

.quote-card-j__text {
    margin: 0;
}

.quote-card-j__text p {
    margin: 0;
    font-size: 21px;
    font-weight: var(--font-weight-medium);
    line-height: 34px;
    color: var(--color-text-heading);
}

.quote-card-j__footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-card-j__avatar {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #ffa34d;          /* orange ring behind the headshot */
    overflow: hidden;
    display: block;
}

.quote-card-j__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-card-j__byline {
    display: flex;
    flex-direction: column;
}

.quote-card-j__name {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 20px;
    color: var(--color-text-heading);
}

.quote-card-j__role {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-body);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
    .journey-approach {
        padding: 24px var(--section-side-padding);
    }
    .journey-approach__inner {
        padding: 40px 24px;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .journey-approach__inner::before {
        height: 100%;
    }
    .journey-approach__intro,
    .journey-approach__quote,
    .journey-approach__aside {
        grid-column: 1;
        grid-row: auto;
    }
    .quote-card-j {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .journey-approach__heading,
    .journey-approach__heading .accent-script {
        font-size: var(--text-3xl);
        line-height: 1.2;
    }
    .journey-approach__statement {
        font-size: var(--text-xl);
        line-height: 1.4;
    }
}
