.story-img {
    position: relative;
}

.story-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    padding: 24px 28px;
    text-align: center;
}

.story-badge-n {
    font-family: var(--fd);
    font-size: 42px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.story-badge-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.sr-cell {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.sr-cell:last-child {
    border-right: none;
}

.sr-n {
    font-family: var(--fd);
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
}

.sr-l {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 6px;
}

.val-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform .4s, box-shadow .4s;
}

.val-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .07);
}

.val-icon {
    width: 56px;
    height: 56px;
    background: var(--goldp);
    border: 1px solid rgba(196, 151, 63, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.val-icon i {
    color: var(--gold);
    font-size: 22px;
}

.val-title {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.val-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
}

.agent-full {
    text-align: center;
}

.agent-full:hover .af-photo {
    border-color: var(--gold);
}

.af-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
    transition: border-color .3s;
}

.af-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.af-name {
    font-family: var(--fd);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.af-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.af-deals {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.af-soc {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.af-soc a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    transition: all .3s;
}

.af-soc a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--goldp);
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: var(--border);
}

.tl-item {
    position: relative;
    padding-bottom: 36px;
}

.tl-dot {
    position: absolute;
    left: -39px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
}

.tl-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.tl-title {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.tl-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
}

.contact-card h4 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .sr-cell:nth-child(2) {
        border-right: none;
    }

    .sr-cell:nth-child(1),
    .sr-cell:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media(max-width:767px) {
    .story-img img {
        height: 320px;
    }

    .story-badge {
        right: 10px;
        bottom: 10px;
    }
}