/* about.css - Specific Styles for the Essence Page */

.about-narrative {
    padding: 10rem 0;
    background: var(--color-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.narrative-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.narrative-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.dual-soul-section {
    background: #000;
}

.dual-soul-section .panel-section {
    min-height: 80vh;
}

@media (max-width: 992px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .narrative-text h2 { font-size: 3rem; }
}
