
.journey-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    isolation: isolate;
}

/* ---- Aurora background ---- */
.journey-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.j-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .22;
    will-change: transform;
}
.j-blob.jb1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #58111A 0%, transparent 70%);
    top: -160px; left: -120px;
    animation: jdrift1 26s ease-in-out infinite;
}
.j-blob.jb2 {
    width: 440px; height: 440px;
    background: radial-gradient(circle, #A44B59 0%, transparent 70%);
    bottom: -160px; right: -80px;
    animation: jdrift2 30s ease-in-out infinite;
}
@keyframes jdrift1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(70px,50px) scale(1.15);} }
@keyframes jdrift2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-60px,-40px) scale(1.1);} }

/* ---- Huge background year ---- */
.bg-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 24vw, 380px);
    font-weight: 800;
    line-height: 1;
    color: rgba(88, 17, 26, 0.06);
    letter-spacing: -0.03em;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* ---- Container ---- */
.journey-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---- Left content ---- */
.journey-content { max-width: 480px; }

.journey-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #58111A;
    background: rgba(88, 17, 26, 0.08);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.journey-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.journey-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5F6875;
    margin-bottom: 32px;
}

.journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #58111A;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, gap .3s ease;
}
.journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(88, 17, 26, 0.4);
    gap: 16px;
}
.journey-btn span { transition: transform .3s ease; }
.journey-btn:hover span { transform: translateX(3px); }

/* ---- Right image ---- */
.journey-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(88, 17, 26, 0.35);
    background: #fff;
}

.journey-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(88,17,26,.25), transparent 65%);
    filter: blur(40px);
    z-index: -1;
}

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

/* ---- Progress dots ---- */
.journey-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 12px;
}
.journey-progress span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(88, 17, 26, 0.25);
    transition: background .35s ease, transform .35s ease, width .35s ease;
    cursor: pointer;
}
.journey-progress span.active {
    background: #58111A;
    width: 32px;
    border-radius: 999px;
}

/* ---- Scroll hint ---- */
.journey-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 32px;
    z-index: 2;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5F6875;
    display: flex;
    align-items: center;
    gap: 8px;
}
.journey-scroll-hint::after {
    content: '↓';
    animation: hint-bounce 1.6s ease-in-out infinite;
}

.bg-year {
    position: absolute;
    top: 80%;
    left: 40px;
    transform: translateY(-50%);
    font-size: clamp(100px, 20vw, 350px);
    font-weight: 800;
    line-height: 1;
    color: rgba(88, 17, 26, 0.06);
    letter-spacing: -0.03em;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

@keyframes hint-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1023px) {
    .journey-section { height: auto; min-height: 100vh; padding: 100px 0 60px; }
    .journey-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .journey-content { max-width: 100%; margin: 0 auto; }
    .journey-image { max-width: 380px; margin: 0 auto; aspect-ratio: 1 / 1; }
    .journey-scroll-hint { display: none; }
    .j-blob { display: none; }
}

@media (max-width: 640px) {
    .journey-content h2 { font-size: 26px; }
    .journey-content p { font-size: 14px; }
    .journey-progress { bottom: 20px; }
}
@media (max-width: 1023px) {
    .bg-year {
        left: 50%;
        transform: translate(-50%, -60%);
        font-size: clamp(80px, 22vw, 160px);
    }
}