/* Font family alias — файлы Gilroy удалены, используем системный стек */

/* Typography Classes */
.body-1 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 23px;
    line-height: 1.4;
    color: var(--text-primary);
}

.body-2 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--white);
}

.h1 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-primary);
}

.h2 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: var(--text-primary);
}

.h3 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: var(--white);
}

.h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: var(--white);
}

.h5 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.25;
    color: var(--white);
}

.h6 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--white);
}

.caption {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

.small {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
}

/* Font Weight Utilities */
.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .h1 {
        font-size: 36px;
    }
    
    .h2 {
        font-size: 32px;
    }
    
    .h3 {
        font-size: 28px;
    }
    
    .h4 {
        font-size: 22px;
    }
    
    .h5 {
        font-size: 18px;
    }
    
    .body-1 {
        font-size: 16px;
    }
    
    .body-2 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .h1 {
        font-size: 28px;
    }
    
    .h2 {
        font-size: 24px;
    }
    
    .h3 {
        font-size: 20px;
    }
    
    .h4 {
        font-size: 18px;
    }
    
    .h5 {
        font-size: 16px;
    }
}
