.energy-gradient {
    background: linear-gradient(135deg, #3b2e5a 0%, #725b25 50%, #edbbb3 100%);
}
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.serif-italic { 
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* My Journey Section Styles */
.journey-section {
    background-color: #fdfbf7;
    color: #2d332d;
    font-family: 'Inter', sans-serif;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.journey-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #2d332d;
    letter-spacing: -0.02em;
}

.journey-header .subtitle-1 {
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8c734b;
}

.journey-header .subtitle-2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #2d332d;
    margin-top: 0.5rem;
}

.journey-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    color: #8c734b;
}

.journey-intro-image {
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.journey-blockquote {
    position: relative;
    padding: 5rem 4rem;
    background: #fdf2e4;
    border-radius: 2.5rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(140, 115, 75, 0.05);
}

.journey-blockquote .quote-mark-top {
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    font-size: 6rem;
    color: #c4a16b;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    opacity: 0.8;
}

.journey-blockquote .quote-mark-bottom {
    position: absolute;
    bottom: 3.5rem;
    right: 2.5rem;
    font-size: 6rem;
    color: #c4a16b;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    opacity: 0.8;
}

.journey-blockquote .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-style: italic;
    color: #7a2a2a;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.journey-blockquote .quote-author {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: #5d534a;
    text-align: right;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.journey-bold-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #2d332d;
    margin: 2rem 0;
}

.phases-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0;
    position: relative;
}

.phases-header::before,
.phases-header::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #e5e0d8;
}

.phases-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #2d332d;
}

.phase-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e0d8;
}

.phase-item:last-child {
    border-bottom: none;
}

.phase-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1rem;
}

.phase-content {
    display: flex;
    gap: 1.5rem;
}

.phase-number {
    width: 36px;
    height: 36px;
    background: #2d332d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.phase-text h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #2d332d;
}

.phase-text p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phase-text .italic-highlight {
    font-style: italic;
    color: #2d332d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .journey-header h2 {
        font-size: 2.5rem;
    }
    .journey-header .subtitle-1 {
        font-size: 0.7rem;
    }
    .journey-bold-quote {
        font-size: 1.5rem;
    }
    .phase-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .phase-image {
        order: 2;
    }
    .phase-content {
        order: 1;
    }
    .journey-blockquote {
        padding: 4rem 2rem;
        border-radius: 1.5rem;
    }
    .journey-blockquote .quote-text {
        font-size: 1.6rem;
    }
    .journey-blockquote .quote-mark-top {
        font-size: 4rem;
        top: 1rem;
        left: 1rem;
    }
    .journey-blockquote .quote-mark-bottom {
        font-size: 4rem;
        bottom: 2rem;
        right: 1rem;
    }
    .journey-blockquote .quote-author {
        font-size: 2rem;
    }
}
