/* ===================================
   ABOUT PAGE - INSTITUTIONAL STYLING
   =================================== */

/* About Hero */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.hero-preheader {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

/* Story Section */
.story-section {
    background: var(--soft-white);
    text-align: center;
}

.section-preheader {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.story-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.story-text {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 30px;
    color: #333;
    font-weight: 300;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, #f0f0f2 0%, var(--soft-white) 100%);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 50px 40px;
    text-align: left;
    border: 1px solid rgba(26, 26, 27, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--champagne-gold);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--midnight-blue);
}

.value-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* Approach Section */
.approach-section {
    background: var(--midnight-blue);
    color: var(--soft-white);
    text-align: center;
}

.approach-section .section-title {
    color: var(--soft-white);
}

.approach-content {
    max-width: 900px;
    margin: 60px auto 0;
}

.approach-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.approach-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.approach-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--champagne-gold);
}

.approach-text {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 300;
    opacity: 0.9;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-text,
    .approach-text {
        font-size: 1rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
    
    .approach-heading {
        font-size: 1.4rem;
    }
}
