/* ============================================
   ABOUT PAGE — ESPACIO TRES
   ============================================ */

.content {
    position: relative;
    min-height: 100vh;
}

/* ---- Page Hero ---- */
.about-hero {
    background: var(--grad-primary);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 169, 110, 0.18) 0%, transparent 60%);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--surface);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero .section-label {
    color: var(--accent-light);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
}

/* ---- Team Section ---- */
.team-section {
    padding: 5rem 2rem 7rem;
    background: var(--surface);
}

.team-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-section>.section-label,
.team-section>.section-title {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Member Card ---- */
.member-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans-med), box-shadow var(--trans-med);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-accent);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.member-photo-wrapper {
    position: relative;
}

.member-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.member-info {
    padding: 0.5rem 0;
}

.member-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.member-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1.25rem;
}

.member-achievements {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.member-achievements li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.member-achievements li .ach-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ---- Mission strip ---- */
.mission-strip {
    background: var(--grad-primary);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.mission-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--surface);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.mission-strip p {
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.mission-strip p::before,
.mission-strip p::after {
    content: '"';
    color: var(--accent);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.3em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .member-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }

    .member-photo-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }

    .member-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 1.25rem 3rem;
    }

    .team-section {
        padding: 3rem 1.25rem 5rem;
    }
}