/* ═══════════════════════════════════════════════
   ABOUT PAGE — Page-Specific Styles
   ═══════════════════════════════════════════════ */

/* ─── STORY SECTION ─── */
.story {
    padding: 140px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 48px;
}

.story-col-title {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.85;
}

.story-text + .story-text {
    margin-top: 20px;
}

.story-stat-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.story-stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--navy);
    line-height: 1;
}

.story-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--grey);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ─── TEAM SECTION ─── */
.team {
    padding: 140px 0;
    background: var(--light-bg);
}

.team-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.team-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 56px;
}

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

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 44px 32px 40px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11,31,58,0.08);
    border-color: rgba(31,163,163,0.2);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79,209,197,0.2);
}

.team-avatar-initials {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    line-height: 1.75;
}

/* ─── ABOUT RESPONSIVE ─── */
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .story-stat-row { gap: 24px; }
    .team-grid { grid-template-columns: 1fr; }
}
