/* about.css - Premium Dark Mode About Page Styles */

/* Base overrides for About page */
.about-page-dark {
    --bg-primary: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #888888;
    --accent-primary: #3ED5B0;
    
    --nav-bg: rgba(0, 0, 0, 0.85);
    background-color: var(--bg-primary);
}

.about-main {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
}

/* Wider Container */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Typography Overrides */
.hero-heading {
    font-weight: 200; /* ultra-thin */
    font-size: clamp(48px, 6vw, 96px);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-weight: 300;
    font-size: clamp(18px, 2vw, 24px);
    color: #C0C0C0;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-bottom: 60px;
}

/* Hero Split Layout */
.about-hero {
    min-height: 100vh;
    padding: 180px 0 60px 0;
    display: flex;
    align-items: center;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-photo-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Photography Treatment */
.founder-photo {
    width: 100%;
    max-width: 650px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    /* Mandatory B&W Filter */
    filter: grayscale(100%) contrast(1.1) brightness(0.95);
    -webkit-filter: grayscale(100%) contrast(1.1) brightness(0.95);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Hero Stats Array */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.stat-number {
    font-weight: 200; /* ultra-thin matching Morningside */
    font-size: clamp(48px, 5vw, 72px);
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Founder Profile Section */
.founder-profile-section {
    padding: 180px 0;
}

.profile-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.founder-name {
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.founder-title {
    font-weight: 300;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-muted);
    letter-spacing: 0.015em;
    margin-bottom: 60px;
}

.founder-bio p {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    letter-spacing: 0.015em;
    line-height: 1.8;
    margin-bottom: 32px;
}

.expertise-section {
    margin-top: 80px;
}

.expertise-section h3 {
    font-weight: 300;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    color: #C0C0C0;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
}

.expertise-list strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* How We Deliver Section */
.deliver-section {
    padding: 180px 0;
}

.deliver-heading {
    text-align: center;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text-primary);
    margin-bottom: 80px;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.deliver-card h3 {
    font-weight: 500;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.deliver-card p {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.icon-teal {
    color: var(--accent-primary);
    font-size: 40px;
    margin-bottom: 24px;
}

/* Trusted Network */
.network-section {
    padding: 180px 0;
    text-align: center;
}

.network-heading {
    font-weight: 300;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text-primary);
    margin-bottom: 60px;
}

.network-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.network-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.network-org {
    font-weight: 400;
    font-size: 20px;
    color: var(--text-primary);
}

.network-rel {
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
}

/* Animation utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        gap: 60px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-photo-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .founder-photo {
        max-width: 500px;
        width: 100%;
    }
    
    .stats-grid {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 24px;
    }
    
    .about-hero, .founder-profile-section, .deliver-section, .network-section {
        padding: 120px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .deliver-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .network-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        text-align: left;
    }
}
