/* journey.css — "De la graine au pochon" : section violette (motif maison
   .best-sells-section). Titre vert géant + sous-titre orange. Étapes en
   image (cadre incliné #69144B) + texte, alternées, numéros verts "Étape #N". */

.ajrn {
    position: relative;
    background: var(--purple);
    color: var(--white);
    padding: clamp(56px, 8vh, 110px) 0;
    overflow: hidden;
}

/* En-tête : titre vert géant + sous-titre orange */
.ajrn-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}
.ajrn-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1;
    color: var(--green);
    margin: 0;
}
.ajrn-sub {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: var(--orange);
    margin: 10px 0 0;
}

/* Étapes */
.ajrn-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 7vw, 88px);
}

.ajrn-step {
    display: grid;
    grid-template-columns: minmax(0, 360px) 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
}
/* Alternance : image à droite pour les étapes paires */
.ajrn-step:nth-child(even) .ajrn-visual { order: 2; }

/* Visuel + cadre incliné #69144B (signature .hero-frame) */
.ajrn-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ajrn-frame {
    position: absolute;
    inset: 8%;
    border: clamp(16px, 2vw, 24px) solid #69144B;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
}
.ajrn-visual img {
    position: relative;
    z-index: 1;
    width: 82%;
    height: 82%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}
.ajrn-step:nth-child(even) .ajrn-frame { transform: rotate(12deg); }

/* Contenu */
.ajrn-content { min-width: 0; }

/* Numéro vert "Étape #N" — façon .question-number de la home */
.ajrn-num {
    display: inline-block;
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--green);
    line-height: 1;
    margin-bottom: 12px;
}

.ajrn-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}
.ajrn-ico { color: var(--white); flex-shrink: 0; }

.ajrn-step-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 3rem);
    color: var(--white);
    line-height: 1.02;
    margin: 0 0 12px;
}

.ajrn-step-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 540px;
}

/* Responsive : image au-dessus du texte */
@media (max-width: 760px) {
    .ajrn-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ajrn-step:nth-child(even) .ajrn-visual { order: 0; }
    .ajrn-visual { max-width: 300px; }
}
