/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* Hero */
.about-hero {
    padding: calc(80px + 3rem) 0 2rem;
    text-align: center;
    background: var(--off-white);
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.about-hero-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 45ch;
    margin: 0 auto;
    line-height: 1.7;
}

/* Our Story */
.about-story {
    padding: 4rem 0;
}

.about-story-inner {
    display: grid;
    gap: 3rem;
}

.about-story-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.about-story-content p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

/* Values */
.about-story-values {
    display: grid;
    gap: 1.25rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--copper);
}

.value-item svg {
    color: var(--copper);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.value-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Team */
.about-team {
    padding: 4rem 0;
    background: var(--off-white);
}

.about-team .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--copper);
    border: 2px solid var(--border);
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-card-bio {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.team-card-bio:last-child {
    margin-bottom: 0;
}

/* CTA */
.about-cta {
    padding: 4rem 0;
}

.about-cta-inner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}

.about-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.about-cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 45ch;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    transition: all var(--ease);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (min-width: 640px) {
    .about-story-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 900px) {
    .about-story-inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .about-hero {
        padding: calc(80px + 4rem) 0 3rem;
    }

    .about-story {
        padding: 5rem 0;
    }

    .about-team {
        padding: 5rem 0;
    }
}
