/* ═══════════════════════════════════════
   ABOUT PAGE - SPECIFIC STYLES
═══════════════════════════════════════ */

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: var(--white);
}

.about-story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 169, 97, 0.1);
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--navy-black);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.story-text {
    font-size: 1.05rem;
    color: var(--slate-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--slate-medium);
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.mission-icon {
    width: 72px;
    height: 72px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--navy-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: var(--slate-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-card h3 {
    font-size: 1.4rem;
    color: var(--navy-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--slate-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background: var(--off-white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.cert-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-item h4 {
    font-size: 1.3rem;
    color: var(--navy-black);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.cert-item p {
    color: var(--slate-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-story-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .mission-section,
    .team-section,
    .certifications-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-grid,
    .team-grid,
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}