/*
 * ФИРМЕННЫЕ ШРИФТЫ АРМАДЫ
 * SF UI Display с fallback на системные шрифты
 */

/* Базовый шрифт для body - SF UI Display Regular */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SF UI Display Light - для основного текста, описаний */
p, 
.text-content,
.description,
.lead__subtitle,
.news-home-card__excerpt,
.team-item__description {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

/* SF UI Display Regular - для рубрик, подзаголовков */
h3,
h4,
h5,
h6,
.subtitle,
.header__nav-item,
.footer-new__nav a,
.suitable-item__title,
.team-home-card__name,
.news-home-card__date {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

/* SF UI Display Bold - для акцентной инфографики, цифр, кнопок */
.button,
.key-facts-number,
.stats-number,
strong,
b,
.header__title,
.team-home-card__position,
.news-home-card__title,
.partner-item {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* SF UI Display Black - для главных заголовков */
h1,
h2,
.content__title,
.content__title_40,
.content__title_55,
.content__title_lead,
.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Дополнительные стили для инфографики */
.stats,
.key-facts,
.infographic {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* Цифры в ключевых фактах */
.container > div > div > span:first-child {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* Меню */
.header__nav {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

/* Footer */
.footer-new {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-new h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF UI Display', system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

/* Улучшенная читаемость на разных устройствах */
@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}




