/* ── Hero ── */
.abt-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 80px;
}

.abt-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
}

.abt-hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 6px;
}

.abt-hero-tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .08em;
    margin-bottom: 28px;
}

.abt-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    max-width: 540px;
    text-align: justify;
}

.abt-hero-cover {
    position: relative;
}

.abt-hero-cover img {
    width: 100%;
    display: block;
    box-shadow: 0 20px 60px rgba(26,31,143,.2);
}

.abt-hero-cover-caption {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    letter-spacing: .06em;
}

/* ── Stats bar ── */
.abt-stats {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 36px 40px;
}

.abt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 48px;
}

.abt-stat-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.abt-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    letter-spacing: .08em;
    text-align: center;
}

.abt-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* ── Mission ── */
.abt-mission {
    background: #f5f6fb;
    padding: 80px 40px;
}

.abt-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-section-title {
    font-family: var(--serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.abt-mission-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
    text-align: justify;
}

.abt-mission-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
}

.abt-value {
    display: flex;
    gap: 16px;
    align-items: center;
}

.abt-value-icon {
    color: var(--navy);
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.abt-value strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.abt-value p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Team ── */
.abt-team {
    padding: 80px 40px;
}

.abt-team-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.abt-loading {
    font-size: 14px;
    color: var(--muted);
}

.abt-team-groups {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 40px;
}

.abt-team-group {}

.abt-team-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
}

.abt-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.abt-member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--gray);
    background: white;
    transition: box-shadow .15s;
}

.abt-member:hover {
    box-shadow: 0 4px 16px rgba(26,31,143,.1);
}

.abt-member-photo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
}

.abt-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-member-initials {
    width: 100%;
    height: 100%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .05em;
}

.abt-member-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.abt-member-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.abt-member-bio {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── Join ── */
.abt-join {
    background: var(--navy);
    padding: 80px 40px;
    text-align: center;
}

.abt-join-inner {
    max-width: 600px;
    margin: 0 auto;
}

.abt-join-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.abt-join-sub {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.abt-join-btn {
    display: inline-block;
    background: white;
    color: var(--navy);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.abt-join-btn:hover {
    background: var(--gray);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .abt-hero {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }
    .abt-hero-cover { max-width: 320px; margin: 0 auto; }
    .abt-mission-inner { grid-template-columns: 1fr; gap: 40px; }
    .abt-stats { gap: 0; }
    .abt-stat { padding: 20px 28px; }
    .abt-team, .abt-mission, .abt-join { padding: 60px 24px; }
}
