/* ===================================
   GROWTH EVOLUTION - HORIZONTAL GRID
   =================================== */

.journey .section-title {
    font-family: 'DM Serif Display', serif;
}

.evolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.evolution-phase-card {
    background: var(--color-beige);
    border-radius: 12px;
    padding: 24px;
    border-top: 3px solid var(--color-terracotta);
}

/* Phase Header */
.phase-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.phase-number {
    background: var(--color-terracotta);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}

/* Date and Company */
.phase-period {
    font-size: 12px;
    color: var(--color-terracotta);
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 12px;
}

/* Description */
.phase-description {
    font-size: 13px;
    color: var(--color-navy-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Toggle Button */
.phase-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-top: 1px solid #EAE6E1;
    padding: 10px 0 0 0;
    margin-top: 14px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-terracotta);
    transition: opacity 0.2s ease;
}

.phase-toggle:hover {
    opacity: 0.7;
}

.toggle-icon {
    font-size: 16px;
    line-height: 1;
}

/* Hidden Details */
.phase-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.phase-details.open {
    max-height: 1000px;
    padding-top: 12px;
}

.phase-insight {
    font-size: 13px;
    color: var(--color-navy-light);
    line-height: 1.65;
    font-style: italic;
    border-left: 3px solid #EAE6E1;
    padding-left: 14px;
    margin-bottom: 10px;
}

.phase-next {
    font-size: 12px;
    color: var(--color-navy-light);
    background: rgba(224, 120, 86, 0.06);
    border-radius: 6px;
    padding: 10px 14px;
    margin-top: 8px;
}

.phase-next strong {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .evolution-grid {
        grid-template-columns: 1fr;
    }
}
